├── .gitignore ├── ChromeDownload ├── Chrome.ps1 ├── ChromeDownload.pssproj ├── ChromeGCTW.ps1 ├── ChromeWithGreenChrome.ps1 ├── GCStartup.ps1 └── GCupdate.ps1 ├── FirefoxDownload ├── Firefox.ps1 ├── FirefoxDownload.pssproj ├── FirefoxFDTW.ps1 └── FirefoxWithFiredoge.ps1 ├── LICENSE ├── PowerShellScripts.sln ├── README.md └── tools ├── 7za.bin ├── setdll32.bin └── setdll64.bin /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/.gitignore -------------------------------------------------------------------------------- /ChromeDownload/Chrome.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/ChromeDownload/Chrome.ps1 -------------------------------------------------------------------------------- /ChromeDownload/ChromeDownload.pssproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/ChromeDownload/ChromeDownload.pssproj -------------------------------------------------------------------------------- /ChromeDownload/ChromeGCTW.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/ChromeDownload/ChromeGCTW.ps1 -------------------------------------------------------------------------------- /ChromeDownload/ChromeWithGreenChrome.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/ChromeDownload/ChromeWithGreenChrome.ps1 -------------------------------------------------------------------------------- /ChromeDownload/GCStartup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/ChromeDownload/GCStartup.ps1 -------------------------------------------------------------------------------- /ChromeDownload/GCupdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/ChromeDownload/GCupdate.ps1 -------------------------------------------------------------------------------- /FirefoxDownload/Firefox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/FirefoxDownload/Firefox.ps1 -------------------------------------------------------------------------------- /FirefoxDownload/FirefoxDownload.pssproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/FirefoxDownload/FirefoxDownload.pssproj -------------------------------------------------------------------------------- /FirefoxDownload/FirefoxFDTW.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/FirefoxDownload/FirefoxFDTW.ps1 -------------------------------------------------------------------------------- /FirefoxDownload/FirefoxWithFiredoge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/FirefoxDownload/FirefoxWithFiredoge.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShellScripts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/PowerShellScripts.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/README.md -------------------------------------------------------------------------------- /tools/7za.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/tools/7za.bin -------------------------------------------------------------------------------- /tools/setdll32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/tools/setdll32.bin -------------------------------------------------------------------------------- /tools/setdll64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TkYu/PowerShellScripts/HEAD/tools/setdll64.bin --------------------------------------------------------------------------------