time.google.com
time1.google.com
time2.google.com
time3.google.com
| # This script will manually rip out all VMware Tools registry entries and files for Windows 2008-2019 | |
| # Tested for 2019, 2016, and probably works on 2012 R2 after the 2016 fixes. | |
| # This function pulls out the common ID used for most of the VMware registry entries along with the ID | |
| # associated with the MSI for VMware Tools. | |
| function Get-VMwareToolsInstallerID { | |
| foreach ($item in $(Get-ChildItem Registry::HKEY_CLASSES_ROOT\Installer\Products)) { | |
| If ($item.GetValue('ProductName') -eq 'VMware Tools') { | |
| return @{ | |
| reg_id = $item.PSChildName; |
| @echo off | |
| REM use this file to run the powershell script bypassing the policy restrictions | |
| PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& '%~dpn0.ps1'" | |
| pause |
| # bitcoin.conf configuration file. Lines beginning with # are comments. | |
| # Network-related settings: | |
| # Run on the test network instead of the real bitcoin network. | |
| #testnet=0 | |
| # Connect via a socks4 proxy | |
| #proxy=127.0.0.1:9050 | |
| ############################################################## |