├── .gitattributes ├── .github └── FUNDING.yml ├── Community Version ├── Get-AutopilotDiagnosticsCommunity.ps1 ├── README.md ├── WindowsAutopilotIntuneCommunity │ ├── WindowsAutopilotIntuneCommunity.psd1 │ └── WindowsAutopilotIntuneCommunity.psm1 └── get-windowsautopilotinfocommunity.ps1 ├── LICENSE ├── README.md ├── add-check-PE.ps1 ├── autopilotnuke.ps1 ├── windowskey-autoit.au3 └── windowskey-autoit.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Community Version/Get-AutopilotDiagnosticsCommunity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/Community Version/Get-AutopilotDiagnosticsCommunity.ps1 -------------------------------------------------------------------------------- /Community Version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/Community Version/README.md -------------------------------------------------------------------------------- /Community Version/WindowsAutopilotIntuneCommunity/WindowsAutopilotIntuneCommunity.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/Community Version/WindowsAutopilotIntuneCommunity/WindowsAutopilotIntuneCommunity.psd1 -------------------------------------------------------------------------------- /Community Version/WindowsAutopilotIntuneCommunity/WindowsAutopilotIntuneCommunity.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/Community Version/WindowsAutopilotIntuneCommunity/WindowsAutopilotIntuneCommunity.psm1 -------------------------------------------------------------------------------- /Community Version/get-windowsautopilotinfocommunity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/Community Version/get-windowsautopilotinfocommunity.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/README.md -------------------------------------------------------------------------------- /add-check-PE.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/add-check-PE.ps1 -------------------------------------------------------------------------------- /autopilotnuke.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/autopilotnuke.ps1 -------------------------------------------------------------------------------- /windowskey-autoit.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/windowskey-autoit.au3 -------------------------------------------------------------------------------- /windowskey-autoit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-s-taylor/WindowsAutopilotInfo/HEAD/windowskey-autoit.exe --------------------------------------------------------------------------------