-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package download chrome-remote-desktop-chrome
[skip ci]
- Loading branch information
1 parent
dadf195
commit e723aee
Showing
4 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. | ||
|
33 changes: 33 additions & 0 deletions
33
automatic/chrome-remote-desktop-chrome/chrome-remote-desktop-chrome.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>chrome-remote-desktop-chrome</id> | ||
<version>63.0.3239.17</version> | ||
<title>Chrome Remote Desktop for Chrome</title> | ||
<authors>Chrome Remote Desktop Release Managers</authors> | ||
<owners>bcurran3</owners> | ||
<projectUrl>https://chrome.google.com/webstore/detail/chrome-remote-desktop/gbchcmhmhahfdphkhkmpfmihenigjmpp</projectUrl> | ||
<iconUrl>https://lh3.googleusercontent.com/ofXLzG7zzqOJE-AS-mnSt7nto6iVicXjHwHVZSZ5vdgg5AODzAUu_AvFHjWwV4MyUH0G8yDrhQ=w50-h50-e365</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>###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)**</description> | ||
<summary>Chrome Remote Desktop application</summary> | ||
<tags>remote desktop chrome app</tags> | ||
<packageSourceUrl>https://github.com/bcurran3/ChocolateyPackages/tree/master/chrome-remote-desktop-chrome</packageSourceUrl> | ||
<dependencies> | ||
<dependency id="googlechrome" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="tools\**" target="tools" /> | ||
</files> | ||
</package> |
17 changes: 17 additions & 0 deletions
17
automatic/chrome-remote-desktop-chrome/tools/ChocolateyInstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
9 changes: 9 additions & 0 deletions
9
automatic/chrome-remote-desktop-chrome/tools/ChocolateyUninstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |