├── Active Directory ├── Get-LDAPComputer.ps1 ├── Get-LDAPGroup.ps1 ├── Get-LDAPOU.ps1 ├── Get-LDAPUser.ps1 ├── LabAD │ ├── LabSetup.ps1 │ ├── LabSetup.xml │ ├── gNamesSWEDEN.txt │ ├── gNamesUK.txt │ ├── gNamesUSA.txt │ ├── snamesSWEDEN.txt │ ├── snamesUK.txt │ └── snamesUSA.txt ├── New-LDAPComputer.ps1 ├── New-LDAPGroup.ps1 ├── New-LDAPOU.ps1 ├── New-LDAPUser.ps1 └── README.md ├── Applications ├── Get-ExeAppInformation.ps1 ├── Get-InstalledApplications.ps1 ├── Get-UninstallString.ps1 ├── Invoke-DownloadApplication.ps1 ├── Pictures │ ├── Get-ExeAppInformation01.png │ ├── Get-InstalledApplications01.png │ ├── Get-InstalledApplications02.png │ ├── Get-UninstallString01.png │ ├── Get-UninstallString02.png │ └── Get-UninstallString04.png └── README.md ├── Azure Active Directory ├── Add-DeviceToGroup.ps1 └── README.md ├── Azure └── README.md ├── CODE_OF_CONDUCT.md ├── Configuration Manager ├── Export-ApplicationsAndPackages.ps1 └── README.md ├── EXE Application Information Tool ├── ExeApplicationInformation.ps1 ├── ExeApplicationInformation.psf ├── Get-ExeAppInformation_function.ps1 ├── Pictures │ ├── exeappinfo.PNG │ └── exeappinfo1.PNG └── README.md ├── Fundamentals ├── README.md ├── entext.txt ├── links.txt ├── mypsdatafile.psd1 ├── template_ini.ini ├── template_xml.xml └── version.ps1 ├── Internet └── Get-MyIPAddress.ps1 ├── LICENSE ├── MSI Information Tool ├── Pictures │ ├── MSIInformationTool01.PNG │ ├── MSIInformationTool02.PNG │ └── README.md ├── README.md ├── msiinformation.ps1 └── msiinformation.psf ├── Microsoft Deployment Toolkit ├── Add-MDTCustomSettingsInformation.ps1 ├── Get-MDTCustomSettingsInformation.ps1 ├── Install-MDTCore.ps1 ├── README.md └── Set-MDTCustomSettingsInformation.ps1 ├── Microsoft Word ├── Create-WiFiPoster.ps1 └── README.md ├── Mobicontrol ├── README.md └── Restart-MobiControlService.ps1 ├── Names ├── Format-Names.ps1 ├── Pictures │ └── Format-Names01.png └── README.md ├── PowerShell Studio ├── Active Directory │ ├── Count Group Members │ │ ├── Count Group Members.Run.ps1 │ │ ├── Count Group Members.ps1 │ │ ├── Count Group Members.psproj │ │ ├── Count Group Members.psprojs │ │ ├── Globals.ps1 │ │ ├── MainForm.TempPoint.psf │ │ ├── MainForm.psf │ │ └── Startup.pss │ └── README.md └── README.md ├── README.md ├── Real Fake Names ├── Create-RealFakeNames.ps1 ├── Imported │ ├── gNamesDenmark.txt │ ├── gNamesENGLANDWALES.txt │ ├── gNamesFinland.txt │ ├── gNamesNorway.txt │ ├── gNamesSweden.txt │ ├── gNamesUSA.txt │ ├── sNamesENGLANDWALES.txt │ ├── sNamesNorway.txt │ ├── sNamesSweden.txt │ └── sNamesUSA.txt ├── README.md ├── function_Get-GivenName.ps1 ├── function_Import-GivenNames.ps1 └── function_Import-SurNames.ps1 ├── Visual Studio Code ├── Install-VisualStudioCode.ps1 ├── README.md ├── Set-BasicPSSettingsVisualStudioCode.ps1 ├── Set-OpenWithVisualStudioCode.ps1 ├── Uninstall-VisualStudioCode.ps1 ├── Visual Studio Code and GitHub CheatSheet.pdf └── settings.json └── Windows ├── Disable-ShowHiddenFiles.ps1 ├── Disable-ShowKnownFileExtension.ps1 ├── Enable-ShowHiddenFiles.ps1 ├── Enable-ShowKnownFileExtension.ps1 ├── Get-ComputerManufacturer.ps1 ├── Get-ComputerModel.ps1 ├── Get-ComputerSerialNumber.ps1 ├── Get-PingStatus.ps1 ├── Get-Windows10BuildInformation.ps1 ├── Get-Windows10ReleaseInformation.ps1 ├── Invoke-CleanTemp.ps1 ├── Invoke-PnPReScan.ps1 ├── New-ShortCut.ps1 ├── Pictures ├── Get-ComputerManufacturer01.png ├── Get-ComputerModel01.png ├── Get-Windows10BuildInformation01.png ├── Get-Windows10BuildInformation02.png ├── Get-Windows10ReleasInformation01.png ├── Get-Windows10ReleasInformation02.png ├── Invoke-CleanTemp.png ├── Invoke-PnPReScan.png ├── Invoke-PnPReScan02.png ├── Invoke-PnPReScan03.png ├── New-Shortcut01.png └── readme.md ├── README.md └── Windows10BuildInformation.json /Active Directory/Get-LDAPComputer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/Get-LDAPComputer.ps1 -------------------------------------------------------------------------------- /Active Directory/Get-LDAPGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/Get-LDAPGroup.ps1 -------------------------------------------------------------------------------- /Active Directory/Get-LDAPOU.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/Get-LDAPOU.ps1 -------------------------------------------------------------------------------- /Active Directory/Get-LDAPUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/Get-LDAPUser.ps1 -------------------------------------------------------------------------------- /Active Directory/LabAD/LabSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/LabAD/LabSetup.ps1 -------------------------------------------------------------------------------- /Active Directory/LabAD/LabSetup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/LabAD/LabSetup.xml -------------------------------------------------------------------------------- /Active Directory/LabAD/gNamesSWEDEN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/LabAD/gNamesSWEDEN.txt -------------------------------------------------------------------------------- /Active Directory/LabAD/gNamesUK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/LabAD/gNamesUK.txt -------------------------------------------------------------------------------- /Active Directory/LabAD/gNamesUSA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/LabAD/gNamesUSA.txt -------------------------------------------------------------------------------- /Active Directory/LabAD/snamesSWEDEN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/LabAD/snamesSWEDEN.txt -------------------------------------------------------------------------------- /Active Directory/LabAD/snamesUK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/LabAD/snamesUK.txt -------------------------------------------------------------------------------- /Active Directory/LabAD/snamesUSA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/LabAD/snamesUSA.txt -------------------------------------------------------------------------------- /Active Directory/New-LDAPComputer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/New-LDAPComputer.ps1 -------------------------------------------------------------------------------- /Active Directory/New-LDAPGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/New-LDAPGroup.ps1 -------------------------------------------------------------------------------- /Active Directory/New-LDAPOU.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/New-LDAPOU.ps1 -------------------------------------------------------------------------------- /Active Directory/New-LDAPUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/New-LDAPUser.ps1 -------------------------------------------------------------------------------- /Active Directory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Active Directory/README.md -------------------------------------------------------------------------------- /Applications/Get-ExeAppInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/Get-ExeAppInformation.ps1 -------------------------------------------------------------------------------- /Applications/Get-InstalledApplications.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/Get-InstalledApplications.ps1 -------------------------------------------------------------------------------- /Applications/Get-UninstallString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/Get-UninstallString.ps1 -------------------------------------------------------------------------------- /Applications/Invoke-DownloadApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/Invoke-DownloadApplication.ps1 -------------------------------------------------------------------------------- /Applications/Pictures/Get-ExeAppInformation01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/Pictures/Get-ExeAppInformation01.png -------------------------------------------------------------------------------- /Applications/Pictures/Get-InstalledApplications01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/Pictures/Get-InstalledApplications01.png -------------------------------------------------------------------------------- /Applications/Pictures/Get-InstalledApplications02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/Pictures/Get-InstalledApplications02.png -------------------------------------------------------------------------------- /Applications/Pictures/Get-UninstallString01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/Pictures/Get-UninstallString01.png -------------------------------------------------------------------------------- /Applications/Pictures/Get-UninstallString02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/Pictures/Get-UninstallString02.png -------------------------------------------------------------------------------- /Applications/Pictures/Get-UninstallString04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/Pictures/Get-UninstallString04.png -------------------------------------------------------------------------------- /Applications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Applications/README.md -------------------------------------------------------------------------------- /Azure Active Directory/Add-DeviceToGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Azure Active Directory/Add-DeviceToGroup.ps1 -------------------------------------------------------------------------------- /Azure Active Directory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Azure Active Directory/README.md -------------------------------------------------------------------------------- /Azure/README.md: -------------------------------------------------------------------------------- 1 | # Azure 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Configuration Manager/Export-ApplicationsAndPackages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Configuration Manager/Export-ApplicationsAndPackages.ps1 -------------------------------------------------------------------------------- /Configuration Manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Configuration Manager/README.md -------------------------------------------------------------------------------- /EXE Application Information Tool/ExeApplicationInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/EXE Application Information Tool/ExeApplicationInformation.ps1 -------------------------------------------------------------------------------- /EXE Application Information Tool/ExeApplicationInformation.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/EXE Application Information Tool/ExeApplicationInformation.psf -------------------------------------------------------------------------------- /EXE Application Information Tool/Get-ExeAppInformation_function.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/EXE Application Information Tool/Get-ExeAppInformation_function.ps1 -------------------------------------------------------------------------------- /EXE Application Information Tool/Pictures/exeappinfo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/EXE Application Information Tool/Pictures/exeappinfo.PNG -------------------------------------------------------------------------------- /EXE Application Information Tool/Pictures/exeappinfo1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/EXE Application Information Tool/Pictures/exeappinfo1.PNG -------------------------------------------------------------------------------- /EXE Application Information Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/EXE Application Information Tool/README.md -------------------------------------------------------------------------------- /Fundamentals/README.md: -------------------------------------------------------------------------------- 1 | PowerShell Fundamentals 2 | -------------------------------------------------------------------------------- /Fundamentals/entext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Fundamentals/entext.txt -------------------------------------------------------------------------------- /Fundamentals/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Fundamentals/links.txt -------------------------------------------------------------------------------- /Fundamentals/mypsdatafile.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Fundamentals/mypsdatafile.psd1 -------------------------------------------------------------------------------- /Fundamentals/template_ini.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Fundamentals/template_ini.ini -------------------------------------------------------------------------------- /Fundamentals/template_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Fundamentals/template_xml.xml -------------------------------------------------------------------------------- /Fundamentals/version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Fundamentals/version.ps1 -------------------------------------------------------------------------------- /Internet/Get-MyIPAddress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Internet/Get-MyIPAddress.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/LICENSE -------------------------------------------------------------------------------- /MSI Information Tool/Pictures/MSIInformationTool01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/MSI Information Tool/Pictures/MSIInformationTool01.PNG -------------------------------------------------------------------------------- /MSI Information Tool/Pictures/MSIInformationTool02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/MSI Information Tool/Pictures/MSIInformationTool02.PNG -------------------------------------------------------------------------------- /MSI Information Tool/Pictures/README.md: -------------------------------------------------------------------------------- 1 | Readme.md 2 | -------------------------------------------------------------------------------- /MSI Information Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/MSI Information Tool/README.md -------------------------------------------------------------------------------- /MSI Information Tool/msiinformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/MSI Information Tool/msiinformation.ps1 -------------------------------------------------------------------------------- /MSI Information Tool/msiinformation.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/MSI Information Tool/msiinformation.psf -------------------------------------------------------------------------------- /Microsoft Deployment Toolkit/Add-MDTCustomSettingsInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Microsoft Deployment Toolkit/Add-MDTCustomSettingsInformation.ps1 -------------------------------------------------------------------------------- /Microsoft Deployment Toolkit/Get-MDTCustomSettingsInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Microsoft Deployment Toolkit/Get-MDTCustomSettingsInformation.ps1 -------------------------------------------------------------------------------- /Microsoft Deployment Toolkit/Install-MDTCore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Microsoft Deployment Toolkit/Install-MDTCore.ps1 -------------------------------------------------------------------------------- /Microsoft Deployment Toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Microsoft Deployment Toolkit/README.md -------------------------------------------------------------------------------- /Microsoft Deployment Toolkit/Set-MDTCustomSettingsInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Microsoft Deployment Toolkit/Set-MDTCustomSettingsInformation.ps1 -------------------------------------------------------------------------------- /Microsoft Word/Create-WiFiPoster.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Microsoft Word/Create-WiFiPoster.ps1 -------------------------------------------------------------------------------- /Microsoft Word/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Microsoft Word/README.md -------------------------------------------------------------------------------- /Mobicontrol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Mobicontrol/README.md -------------------------------------------------------------------------------- /Mobicontrol/Restart-MobiControlService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Mobicontrol/Restart-MobiControlService.ps1 -------------------------------------------------------------------------------- /Names/Format-Names.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Names/Format-Names.ps1 -------------------------------------------------------------------------------- /Names/Pictures/Format-Names01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Names/Pictures/Format-Names01.png -------------------------------------------------------------------------------- /Names/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Names/README.md -------------------------------------------------------------------------------- /PowerShell Studio/Active Directory/Count Group Members/Count Group Members.Run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/PowerShell Studio/Active Directory/Count Group Members/Count Group Members.Run.ps1 -------------------------------------------------------------------------------- /PowerShell Studio/Active Directory/Count Group Members/Count Group Members.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/PowerShell Studio/Active Directory/Count Group Members/Count Group Members.ps1 -------------------------------------------------------------------------------- /PowerShell Studio/Active Directory/Count Group Members/Count Group Members.psproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/PowerShell Studio/Active Directory/Count Group Members/Count Group Members.psproj -------------------------------------------------------------------------------- /PowerShell Studio/Active Directory/Count Group Members/Count Group Members.psprojs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/PowerShell Studio/Active Directory/Count Group Members/Count Group Members.psprojs -------------------------------------------------------------------------------- /PowerShell Studio/Active Directory/Count Group Members/Globals.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/PowerShell Studio/Active Directory/Count Group Members/Globals.ps1 -------------------------------------------------------------------------------- /PowerShell Studio/Active Directory/Count Group Members/MainForm.TempPoint.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/PowerShell Studio/Active Directory/Count Group Members/MainForm.TempPoint.psf -------------------------------------------------------------------------------- /PowerShell Studio/Active Directory/Count Group Members/MainForm.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/PowerShell Studio/Active Directory/Count Group Members/MainForm.psf -------------------------------------------------------------------------------- /PowerShell Studio/Active Directory/Count Group Members/Startup.pss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/PowerShell Studio/Active Directory/Count Group Members/Startup.pss -------------------------------------------------------------------------------- /PowerShell Studio/Active Directory/README.md: -------------------------------------------------------------------------------- 1 | AD 2 | -------------------------------------------------------------------------------- /PowerShell Studio/README.md: -------------------------------------------------------------------------------- 1 | PowerShell Studio stuff 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/README.md -------------------------------------------------------------------------------- /Real Fake Names/Create-RealFakeNames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Create-RealFakeNames.ps1 -------------------------------------------------------------------------------- /Real Fake Names/Imported/gNamesDenmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Imported/gNamesDenmark.txt -------------------------------------------------------------------------------- /Real Fake Names/Imported/gNamesENGLANDWALES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Imported/gNamesENGLANDWALES.txt -------------------------------------------------------------------------------- /Real Fake Names/Imported/gNamesFinland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Imported/gNamesFinland.txt -------------------------------------------------------------------------------- /Real Fake Names/Imported/gNamesNorway.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Imported/gNamesNorway.txt -------------------------------------------------------------------------------- /Real Fake Names/Imported/gNamesSweden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Imported/gNamesSweden.txt -------------------------------------------------------------------------------- /Real Fake Names/Imported/gNamesUSA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Imported/gNamesUSA.txt -------------------------------------------------------------------------------- /Real Fake Names/Imported/sNamesENGLANDWALES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Imported/sNamesENGLANDWALES.txt -------------------------------------------------------------------------------- /Real Fake Names/Imported/sNamesNorway.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Imported/sNamesNorway.txt -------------------------------------------------------------------------------- /Real Fake Names/Imported/sNamesSweden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Imported/sNamesSweden.txt -------------------------------------------------------------------------------- /Real Fake Names/Imported/sNamesUSA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/Imported/sNamesUSA.txt -------------------------------------------------------------------------------- /Real Fake Names/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/README.md -------------------------------------------------------------------------------- /Real Fake Names/function_Get-GivenName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/function_Get-GivenName.ps1 -------------------------------------------------------------------------------- /Real Fake Names/function_Import-GivenNames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/function_Import-GivenNames.ps1 -------------------------------------------------------------------------------- /Real Fake Names/function_Import-SurNames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Real Fake Names/function_Import-SurNames.ps1 -------------------------------------------------------------------------------- /Visual Studio Code/Install-VisualStudioCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Visual Studio Code/Install-VisualStudioCode.ps1 -------------------------------------------------------------------------------- /Visual Studio Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Visual Studio Code/README.md -------------------------------------------------------------------------------- /Visual Studio Code/Set-BasicPSSettingsVisualStudioCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Visual Studio Code/Set-BasicPSSettingsVisualStudioCode.ps1 -------------------------------------------------------------------------------- /Visual Studio Code/Set-OpenWithVisualStudioCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Visual Studio Code/Set-OpenWithVisualStudioCode.ps1 -------------------------------------------------------------------------------- /Visual Studio Code/Uninstall-VisualStudioCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Visual Studio Code/Uninstall-VisualStudioCode.ps1 -------------------------------------------------------------------------------- /Visual Studio Code/Visual Studio Code and GitHub CheatSheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Visual Studio Code/Visual Studio Code and GitHub CheatSheet.pdf -------------------------------------------------------------------------------- /Visual Studio Code/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Visual Studio Code/settings.json -------------------------------------------------------------------------------- /Windows/Disable-ShowHiddenFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Disable-ShowHiddenFiles.ps1 -------------------------------------------------------------------------------- /Windows/Disable-ShowKnownFileExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Disable-ShowKnownFileExtension.ps1 -------------------------------------------------------------------------------- /Windows/Enable-ShowHiddenFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Enable-ShowHiddenFiles.ps1 -------------------------------------------------------------------------------- /Windows/Enable-ShowKnownFileExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Enable-ShowKnownFileExtension.ps1 -------------------------------------------------------------------------------- /Windows/Get-ComputerManufacturer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Get-ComputerManufacturer.ps1 -------------------------------------------------------------------------------- /Windows/Get-ComputerModel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Get-ComputerModel.ps1 -------------------------------------------------------------------------------- /Windows/Get-ComputerSerialNumber.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Get-ComputerSerialNumber.ps1 -------------------------------------------------------------------------------- /Windows/Get-PingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Get-PingStatus.ps1 -------------------------------------------------------------------------------- /Windows/Get-Windows10BuildInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Get-Windows10BuildInformation.ps1 -------------------------------------------------------------------------------- /Windows/Get-Windows10ReleaseInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Get-Windows10ReleaseInformation.ps1 -------------------------------------------------------------------------------- /Windows/Invoke-CleanTemp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Invoke-CleanTemp.ps1 -------------------------------------------------------------------------------- /Windows/Invoke-PnPReScan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Invoke-PnPReScan.ps1 -------------------------------------------------------------------------------- /Windows/New-ShortCut.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/New-ShortCut.ps1 -------------------------------------------------------------------------------- /Windows/Pictures/Get-ComputerManufacturer01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/Get-ComputerManufacturer01.png -------------------------------------------------------------------------------- /Windows/Pictures/Get-ComputerModel01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/Get-ComputerModel01.png -------------------------------------------------------------------------------- /Windows/Pictures/Get-Windows10BuildInformation01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/Get-Windows10BuildInformation01.png -------------------------------------------------------------------------------- /Windows/Pictures/Get-Windows10BuildInformation02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/Get-Windows10BuildInformation02.png -------------------------------------------------------------------------------- /Windows/Pictures/Get-Windows10ReleasInformation01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/Get-Windows10ReleasInformation01.png -------------------------------------------------------------------------------- /Windows/Pictures/Get-Windows10ReleasInformation02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/Get-Windows10ReleasInformation02.png -------------------------------------------------------------------------------- /Windows/Pictures/Invoke-CleanTemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/Invoke-CleanTemp.png -------------------------------------------------------------------------------- /Windows/Pictures/Invoke-PnPReScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/Invoke-PnPReScan.png -------------------------------------------------------------------------------- /Windows/Pictures/Invoke-PnPReScan02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/Invoke-PnPReScan02.png -------------------------------------------------------------------------------- /Windows/Pictures/Invoke-PnPReScan03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/Invoke-PnPReScan03.png -------------------------------------------------------------------------------- /Windows/Pictures/New-Shortcut01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Pictures/New-Shortcut01.png -------------------------------------------------------------------------------- /Windows/Pictures/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/README.md -------------------------------------------------------------------------------- /Windows/Windows10BuildInformation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FredrikWall/PowerShell/HEAD/Windows/Windows10BuildInformation.json --------------------------------------------------------------------------------