3 Star 14 Fork 10

felord / Microsoft-Integration-and-Azure-Stencils-Pack-for-Visio

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Install-MIS-Azure-Visio-Package.ps1 856 Bytes
一键复制 编辑 原始数据 按行查看 历史
Emil Sundin 提交于 2020-09-22 13:11 . Improve install script
#########################################################
# #
# Install Microsoft Integration & Azure Stencils Pack #
# Author: Sandro Pereira #
# #
#########################################################
[String]$location = Split-Path -Parent $PSCommandPath
[String]$destination = Get-ChildItem HKCU:\Software\Microsoft\Office\ -Recurse | Where-Object {$_.PSChildName -eq "Application"} | Get-ItemProperty -Name MyShapesPath | Select-Object -ExpandProperty MyShapesPath
$files = Get-ChildItem $location -recurse -force -Filter *.vssx
foreach($file in $files)
{
if($file.PSPath.Contains("Previous Versions") -eq $false)
{
Copy-Item -Path $file.PSPath -Destination $destination -force
}
}
1
https://gitee.com/felord/Microsoft-Integration-and-Azure-Stencils-Pack-for-Visio.git
git@gitee.com:felord/Microsoft-Integration-and-Azure-Stencils-Pack-for-Visio.git
felord
Microsoft-Integration-and-Azure-Stencils-Pack-for-Visio
Microsoft-Integration-and-Azure-Stencils-Pack-for-Visio
master

搜索帮助