Inital commit.

This commit is contained in:
2019-11-11 19:22:39 -05:00
parent f89d330f14
commit a052b43b22
80 changed files with 5989 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
if (Test-Path "HKLM:Software\Wow6432Node\Splashtop Inc.") {
$SplashtopProductCode = (Get-ItemProperty "HKLM:Software\Wow6432Node\Splashtop Inc.\Splashtop Remote Server for Business").PRODUCTID
Start-Process "msiexec.exe" -ArgumentList "/x ${SplashtopProductCode} /qn" -Wait
}
if (Test-Path "HKLM:Software\Splashtop Inc.") {
$SplashtopProductCode = (Get-ItemProperty "HKLM:Software\Splashtop Inc.\Splashtop Remote Server for Business").PRODUCTID
Start-Process "msiexec.exe" -ArgumentList "/x ${SplashtopProductCode} /qn" -Wait
}