PowerShell 技能连载 - PowerShell 陈列架:创建二维码 vCard

在前一个技能中我们解释了如何获取 PowerShellGet 并在您的 PowerShell 版本中使用。现在我们来看看 PowerShell 陈列架能够多门方便地扩展 PowerShell 的功能。

下次您打印名片的时候,何不增加一个二维码呢?它使得增加联系人十分方便!大多数现代的设备都支持二维码,所以当您将相机 APP 对准一个二位码时,智能手机可以直接向这个联系人发送邮件,或者将他添加为您的联系人。

以下是创建 vCard 二维码的方法:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# adjust this to match your own info
$first = "Tom"
$last = "Sawywer"
$company = "freelancer.com"
$email = "t.sawyer@freelancer.com"


# QR Code will be saved here
$path = "$home\Desktop\vCard.png"

# install the module from the Gallery (only required once)
Install-Module QRCodeGenerator -Scope CurrentUser -Force
# create QR code
New-QRCodeVCard -FirstName $first -LastName $last -Company $company -Email $email -OutPath $path

# open QR code image with an associated program
Invoke-Item -Path $path

PowerShell 技能连载 - PowerShell 陈列架:创建二维码 vCard

http://blog.vichamp.com/2018/05/23/powershell-gallery-creating-qrcode-vcards/

作者

吴波

发布于

2018-05-23

更新于

2022-07-06

许可协议

评论