Researched by Robert Quattlebaum [email protected].
Last updated 2020-02-03.
rem Or even better, create a system image! | |
rem http://www.aomeitech.com/ab/standard.html | |
rem https://www.macrium.com/reflectfree | |
rem Things, that will get broken, that will get noticed ASAP or after restart, like Start or WiFi for sure! | |
rem Disabling network services (Dhcp/NlaSvc/netprofm/nsi/RmSvc) will prevent you from managing network settings! | |
rem Windows Defender Firewall is set to block all inbound/outbound except allowed apps, which have to be added first! | |
rem Terminating "ShellExperienceHost.exe" will restart it and Start's functionality | |
rem You can create a task, which runs after logon with one minute delay. |
Country Name,Country Code,Series Name,Series Code,2014 [YR2014],2015 [YR2015],2016 [YR2016],2017 [YR2017],2018 [YR2018] | |
Afghanistan,AFG,Manufactures exports (% of merchandise exports),TX.VAL.MANF.ZS.UN,14.7219364611863,15.8626032734504,6.56171477932471,..,.. | |
Afghanistan,AFG,Merchandise exports (current US$),TX.VAL.MRCH.CD.WT,570000000,571000000,596000000,780000000,875000000 | |
Afghanistan,AFG,Commercial service exports (current US$),TX.VAL.SERV.CD.WT,1245116192.49518,734974019.418313,380875667.824945,252886849.455045,.. | |
Albania,ALB,Manufactures exports (% of merchandise exports),TX.VAL.MANF.ZS.UN,31.3635380921156,52.6944270996236,66.3131124463271,51.3722500613632,41.5676978166436 | |
Albania,ALB,Merchandise exports (current US$),TX.VAL.MRCH.CD.WT,2431000000,1930000000,1962000000,2301000000,2876000000 | |
Albania,ALB,Commercial service exports (current US$),TX.VAL.SERV.CD.WT,2454016098.32733,2205497327.38097,2609903799.93551,3192929713.19358,3566275231.79488 | |
Algeria,DZA,Manufactures exports (% of merchandise expo |
As a general rule, most people can just edit the PSModulePath variable in their Environment Variables ...
However, I am not most people.
I want to test all the things, and I want to use PowerShell 7, 6, and 5.1 interchangeably:
- I have to use PowerShell 5.1 for most of our work code (we're provisioning Windows 10 / Server 2016 / Server 2019 ... and 5.1 is what's on the box)
- I want to use PowerShell 7.x (whatever the current release is)
- I want to test the current "pre-release" version
Additionally, to make matters more confusing ... I sometimes work on Windows and sometimes on Linux (most notably in Azure's CloudShell).
Until recently, the Google Home app used to communicate with the device over port 8008 (HTTP) and did not require any authentication. Everything in the unofficial documentation worked as expected.
A few days (weeks) ago, Google pushed a new update to all GH devices and all endpoints (except /setup/eureka_info
) started returning 403 (forbidden) errors. The app had switched over to port 8443 and HTTPS.
function Save-KBFile { | |
<# | |
.SYNOPSIS | |
Downloads patches from Microsoft | |
.DESCRIPTION | |
Downloads patches from Microsoft | |
.PARAMETER Name | |
The KB name or number. For example, KB4057119 or 4057119. |
$results = ( | |
Get-AppxPackage | | |
ForEach{ | |
$thisAppx = $_ | |
$thisManifest = $_ | Get-AppxPackageManifest | |
$thisSubPath = '' | |
$thisLogoBaseName = '' | |
$thisLogoRoot = '' | |
$thisLogoUNC = '' | |
If ($thisManifest.Package.Properties.logo -like '*\*'){ |
- Vim
- Visual Studio Code - Built-in preview with scroll sync.
Function Get-URLData { | |
<# | |
.SYNOPSIS | |
This function parses a URL and returns an object with all the detailed information of it | |
.DESCRIPTION | |
Long description | |
.EXAMPLE | |
Get-UrlData -Url 'https://Google.com/Search' |
{ | |
"AATes123": true, | |
"AcrylicAndBackground": true, | |
"AudioInfoSync": true, | |
"BatteryIndicator": true, | |
"CallingDiscoveryTimeout": 30, | |
"CallingEnableOnARM": true, | |
"CallingFromMessages": true, | |
"CallingLabelInProd": true, | |
"CallingNode": true, |