diff --git a/automatic/chrome-remote-desktop-chrome/README.md b/automatic/chrome-remote-desktop-chrome/README.md new file mode 100644 index 000000000..3cf963f4a --- /dev/null +++ b/automatic/chrome-remote-desktop-chrome/README.md @@ -0,0 +1,14 @@ +**BCURRAN3'S PACKAGE NOTES:** + +* This installs no software. It installs a registry key for the extension (or app) that Chrome will see and then ask you for permission to enable the extension (or app) if you are in Chrome or on the next run. Chrome will install the latest version of the extension (or app). The mentioned version is the version at time of packaging, you can ignore it. Chrome will handle updates to the extension (or app). + +Like my [packages](https://chocolatey.org/profiles/bcurran3)? + +Find them useful? + +**Want to buy me a beer?** + +[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4ECL3UCG5CGB6) + +If applicable, please always consider donating to the developer or purchasing the software first - this includes Chocolatey licensed editions. + diff --git a/automatic/chrome-remote-desktop-chrome/chrome-remote-desktop-chrome.nuspec b/automatic/chrome-remote-desktop-chrome/chrome-remote-desktop-chrome.nuspec new file mode 100644 index 000000000..f1309cc3c --- /dev/null +++ b/automatic/chrome-remote-desktop-chrome/chrome-remote-desktop-chrome.nuspec @@ -0,0 +1,33 @@ + + + + chrome-remote-desktop-chrome + 63.0.3239.17 + Chrome Remote Desktop for Chrome + Chrome Remote Desktop Release Managers + bcurran3 + https://chrome.google.com/webstore/detail/chrome-remote-desktop/gbchcmhmhahfdphkhkmpfmihenigjmpp + https://lh3.googleusercontent.com/ofXLzG7zzqOJE-AS-mnSt7nto6iVicXjHwHVZSZ5vdgg5AODzAUu_AvFHjWwV4MyUH0G8yDrhQ=w50-h50-e365 + false + ###Access other computers or allow another user to access your computer securely over the Internet. + +Chrome Remote Desktop allows users to remotely access another computer through Chrome browser or a Chromebook. Computers can be made available on an short-term basis for scenarios such as ad hoc remote support, or on a more long-term basis for remote access to your applications and files. All connections are fully secured. + +Chrome Remote Desktop is fully cross-platform. Provide remote assistance to Windows, Mac and Linux users, or access your Windows (XP and above) and Mac (OS X 10.6 and above) desktops at any time, all from the Chrome browser on virtually any device, including Chromebooks. + +For information about privacy, please see the Google Privacy Policy and the Chrome Privacy Policy. + +Stay tuned for future updates! + +**[PACKAGE NOTES](https://github.com/bcurran3/ChocolateyPackages/blob/master/chrome-remote-desktop-chrome/readme.md)** + Chrome Remote Desktop application + remote desktop chrome app + https://github.com/bcurran3/ChocolateyPackages/tree/master/chrome-remote-desktop-chrome + + + + + + + + diff --git a/automatic/chrome-remote-desktop-chrome/tools/ChocolateyInstall.ps1 b/automatic/chrome-remote-desktop-chrome/tools/ChocolateyInstall.ps1 new file mode 100644 index 000000000..bdb4d4a0a --- /dev/null +++ b/automatic/chrome-remote-desktop-chrome/tools/ChocolateyInstall.ps1 @@ -0,0 +1,17 @@ +$bits = Get-ProcessorBits +$packageName = 'chrome-remote-desktop-chrome' +$extensionID = 'gbchcmhmhahfdphkhkmpfmihenigjmpp' +if ($bits -eq 64) + { + if (Test-Path -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID") + { + Write-Host "Extension already installed." -foreground "magenta" –backgroundcolor "blue" + } else { + New-Item -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID" | out-null + New-ItemProperty -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID\" -Name "update_url" -Value "https://clients2.google.com/service/update2/crx" | out-null + New-ItemProperty -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID\" -Name "ChocolateyPackageName" -Value "$packageName" | out-null + } + } else { + New-Item -Path "HKLM:\SOFTWARE\Google\Chrome\Extensions\$extensionID" | out-null + New-ItemProperty -Path "HKLM:\SOFTWARE\Google\Chrome\Extensions\$extensionID\" -Name "update_url" -Value "https://clients2.google.com/service/update2/crx" | out-null + } diff --git a/automatic/chrome-remote-desktop-chrome/tools/ChocolateyUninstall.ps1 b/automatic/chrome-remote-desktop-chrome/tools/ChocolateyUninstall.ps1 new file mode 100644 index 000000000..e68c758ff --- /dev/null +++ b/automatic/chrome-remote-desktop-chrome/tools/ChocolateyUninstall.ps1 @@ -0,0 +1,9 @@ +$bits = Get-ProcessorBits +$packageName = 'chrome-remote-desktop-chrome' +$extensionID = 'gbchcmhmhahfdphkhkmpfmihenigjmpp' + +if ($bits -eq 64) { + Remove-Item "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID" -Force -ErrorAction SilentlyContinue | out-null + }else{ + Remove-Item "HKLM:\SOFTWARE\Google\Chrome\Extensions\$extensionID" -Force -ErrorAction SilentlyContinue | out-null +}