Skip to content

Commit

Permalink
oh
Browse files Browse the repository at this point in the history
  • Loading branch information
ghartakham authored Nov 12, 2022
1 parent e5d7da8 commit e877ff1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False
& {$P = $env:TEMP + '\chromeremotedesktophost.msi'; Invoke-WebRequest 'https://dl.google.com/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' -OutFile $P; Start-Process $P -Wait; Remove-Item $P}
& {$P = $env:TEMP + '\chrome_installer.exe'; Invoke-WebRequest 'https://dl.google.com/chrome/install/latest/chrome_installer.exe' -OutFile $P; Start-Process -FilePath $P -Args '/install' -Verb RunAs -Wait; Remove-Item $P}
6 changes: 6 additions & 0 deletions timeout.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$i = 360
do {
Write-Host $i
Sleep 360
$i--
} while ($i -gt 0)

0 comments on commit e877ff1

Please sign in to comment.