├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── Add-GroupMemberByCompliance └── Add-GroupMemberByCompliance.ps1 ├── AzFunctionMultiTenantWI-Demo ├── .funcignore ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── GetDevicesAzPwsh │ ├── function.json │ ├── run.ps1 │ └── sample.dat ├── GetDevicesDemoPwsh │ ├── function.json │ ├── run.ps1 │ └── sample.dat ├── host.json ├── profile.ps1 └── requirements.psd1 ├── AzTableAPIExamples └── AzTableAPIExample.ps1 ├── AzureVPNAutoConnect └── Deploy-AzureVPNWithAutoConnect.ps1 ├── CertificateExpiration └── Get-CertificateExpiry.ps1 ├── DemoModule ├── .gitignore ├── DemoModule │ ├── DemoModule.psd1 │ ├── DemoModule.psm1 │ ├── Private │ │ ├── .gitkeep │ │ └── Get-RandomPlanet.ps1 │ ├── Public │ │ ├── .gitkeep │ │ ├── Invoke-PlanetGreeting.ps1 │ │ └── Test-OddOrEven.ps1 │ ├── ReleaseNotes.txt │ └── description.txt ├── README.md └── build.ps1 ├── Dynamic-Group-Automation ├── .funcignore ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── Dynamic-Group-Function │ ├── function.json │ ├── run.ps1 │ └── sample.dat ├── host.json ├── profile.ps1 ├── proxies.json └── requirements.psd1 ├── Expand-Intunewin ├── Decrypt-IntuneFromLogs.ps1 ├── DecryptAndExpandFromLogs.ps1 ├── Expand-IntunewinFromFile.ps1 ├── Expand-IntunewinFromLogs.ps1 └── readme.md ├── FIleHashValidation ├── Get-ComputedMD5.ps1 ├── Get-RemoteFIleIfHashIsKnown.ps1 └── Get-RemoteFileAndConfirmHashValidationLocally.ps1 ├── Get-TenantIdFromDomain └── Get-TenantIdFromDomain.ps1 ├── Get-Win32AppsUsingMSAL └── Get-Win32AppsUsingMSAL.ps1 ├── GetMeABeer.ps1 ├── GraphApiToMSI └── Add-GraphApiRoleToMSI.ps1 ├── Import-VSCodeThemeToTerminal └── Import-VSCodeThemeToTerminal.ps1 ├── Install-Fonts └── Install-Fonts.ps1 ├── Install-MicrosoftTeams ├── Install-MicrosoftTeams.ps1 └── readme.md ├── Install-Printers ├── Configure-Policies.ps1 └── Install-Printers.ps1 ├── IntuneMonitoring ├── IntuneConfigMonitoring │ ├── IntuneConfigMonitoring.ps1 │ └── appConfig.json ├── IntuneConfigSnapshot │ ├── IntuneConfigSnapshot.ps1 │ └── appConfig.json └── readme.md ├── Invoke-GraphConnector ├── Invoke-GraphConnector.ps1 ├── Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll ├── Microsoft.IdentityModel.Clients.ActiveDirectory.dll ├── appConfig.json └── readme.md ├── LICENSE ├── MSI-AzFunction-Demo ├── .funcignore ├── .gitignore ├── HttpTrigger1 │ ├── function.json │ ├── run.ps1 │ └── sample.dat ├── host.json ├── profile.ps1 └── requirements.psd1 ├── New-PolicyFromTemplate ├── New-PolicyFromTemplate.ps1 └── restExamples │ └── policyTemplates.rest ├── OMA-URI_CheatSheet └── OMA-URI_CheatSheet.pdf ├── PSConfAsia └── Get-WordPressPostSummary.ps1 ├── PowerBI-GraphAuthentication ├── PowerBI_Graph_Authentication.pbit └── PowerBI_Graph_Authentication_Updated.pbit ├── Publish-ScriptToIntune └── Publish-ScriptToIntune.ps1 ├── README.md ├── Registry-Configuration └── Registry-Configuration.ps1 ├── Reset-SidecarScript ├── Reset-SideCarScript.ps1 └── readme.md ├── ScheduledZoomPackager └── Get-ZoomUpdate.ps1 ├── Send-IntuneLogsToFlow └── Send-IntuneLogsToFlow.ps1 ├── Set-RegistryValueForAllUsers └── Set-RegistryValueForAllUsers.ps1 ├── Set-Timezone ├── Set-TimezoneFromIP.ps1 └── Set-TimezoneFromLocation.ps1 ├── Sync-SharepointFolder └── Sync-SharepointFolder.ps1 ├── Universal-Print-Printer-Install ├── Detect.ps1 └── Remediate.ps1 └── Update-AutoPilotGroupTag └── Update-AutoPilotGroupTag.ps1 /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Add-GroupMemberByCompliance/Add-GroupMemberByCompliance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Add-GroupMemberByCompliance/Add-GroupMemberByCompliance.ps1 -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/.funcignore -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/.gitignore -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/.vscode/extensions.json -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/.vscode/launch.json -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/.vscode/settings.json -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/.vscode/tasks.json -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/GetDevicesAzPwsh/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/GetDevicesAzPwsh/function.json -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/GetDevicesAzPwsh/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/GetDevicesAzPwsh/run.ps1 -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/GetDevicesAzPwsh/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } 4 | -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/GetDevicesDemoPwsh/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/GetDevicesDemoPwsh/function.json -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/GetDevicesDemoPwsh/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/GetDevicesDemoPwsh/run.ps1 -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/GetDevicesDemoPwsh/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } 4 | -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/host.json -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/profile.ps1 -------------------------------------------------------------------------------- /AzFunctionMultiTenantWI-Demo/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzFunctionMultiTenantWI-Demo/requirements.psd1 -------------------------------------------------------------------------------- /AzTableAPIExamples/AzTableAPIExample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzTableAPIExamples/AzTableAPIExample.ps1 -------------------------------------------------------------------------------- /AzureVPNAutoConnect/Deploy-AzureVPNWithAutoConnect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/AzureVPNAutoConnect/Deploy-AzureVPNWithAutoConnect.ps1 -------------------------------------------------------------------------------- /CertificateExpiration/Get-CertificateExpiry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/CertificateExpiration/Get-CertificateExpiry.ps1 -------------------------------------------------------------------------------- /DemoModule/.gitignore: -------------------------------------------------------------------------------- 1 | .tests 2 | .vscode 3 | bin 4 | .exe 5 | .msi 6 | .nupkg -------------------------------------------------------------------------------- /DemoModule/DemoModule/DemoModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/DemoModule/DemoModule/DemoModule.psd1 -------------------------------------------------------------------------------- /DemoModule/DemoModule/DemoModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/DemoModule/DemoModule/DemoModule.psm1 -------------------------------------------------------------------------------- /DemoModule/DemoModule/Private/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DemoModule/DemoModule/Private/Get-RandomPlanet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/DemoModule/DemoModule/Private/Get-RandomPlanet.ps1 -------------------------------------------------------------------------------- /DemoModule/DemoModule/Public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DemoModule/DemoModule/Public/Invoke-PlanetGreeting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/DemoModule/DemoModule/Public/Invoke-PlanetGreeting.ps1 -------------------------------------------------------------------------------- /DemoModule/DemoModule/Public/Test-OddOrEven.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/DemoModule/DemoModule/Public/Test-OddOrEven.ps1 -------------------------------------------------------------------------------- /DemoModule/DemoModule/ReleaseNotes.txt: -------------------------------------------------------------------------------- 1 | Initial Release -------------------------------------------------------------------------------- /DemoModule/DemoModule/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/DemoModule/DemoModule/description.txt -------------------------------------------------------------------------------- /DemoModule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/DemoModule/README.md -------------------------------------------------------------------------------- /DemoModule/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/DemoModule/build.ps1 -------------------------------------------------------------------------------- /Dynamic-Group-Automation/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test -------------------------------------------------------------------------------- /Dynamic-Group-Automation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/.gitignore -------------------------------------------------------------------------------- /Dynamic-Group-Automation/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/.vscode/extensions.json -------------------------------------------------------------------------------- /Dynamic-Group-Automation/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/.vscode/launch.json -------------------------------------------------------------------------------- /Dynamic-Group-Automation/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/.vscode/settings.json -------------------------------------------------------------------------------- /Dynamic-Group-Automation/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/.vscode/tasks.json -------------------------------------------------------------------------------- /Dynamic-Group-Automation/Dynamic-Group-Function/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/Dynamic-Group-Function/function.json -------------------------------------------------------------------------------- /Dynamic-Group-Automation/Dynamic-Group-Function/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/Dynamic-Group-Function/run.ps1 -------------------------------------------------------------------------------- /Dynamic-Group-Automation/Dynamic-Group-Function/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } 4 | -------------------------------------------------------------------------------- /Dynamic-Group-Automation/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/host.json -------------------------------------------------------------------------------- /Dynamic-Group-Automation/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/profile.ps1 -------------------------------------------------------------------------------- /Dynamic-Group-Automation/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/proxies.json -------------------------------------------------------------------------------- /Dynamic-Group-Automation/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Dynamic-Group-Automation/requirements.psd1 -------------------------------------------------------------------------------- /Expand-Intunewin/Decrypt-IntuneFromLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Expand-Intunewin/Decrypt-IntuneFromLogs.ps1 -------------------------------------------------------------------------------- /Expand-Intunewin/DecryptAndExpandFromLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Expand-Intunewin/DecryptAndExpandFromLogs.ps1 -------------------------------------------------------------------------------- /Expand-Intunewin/Expand-IntunewinFromFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Expand-Intunewin/Expand-IntunewinFromFile.ps1 -------------------------------------------------------------------------------- /Expand-Intunewin/Expand-IntunewinFromLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Expand-Intunewin/Expand-IntunewinFromLogs.ps1 -------------------------------------------------------------------------------- /Expand-Intunewin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Expand-Intunewin/readme.md -------------------------------------------------------------------------------- /FIleHashValidation/Get-ComputedMD5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/FIleHashValidation/Get-ComputedMD5.ps1 -------------------------------------------------------------------------------- /FIleHashValidation/Get-RemoteFIleIfHashIsKnown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/FIleHashValidation/Get-RemoteFIleIfHashIsKnown.ps1 -------------------------------------------------------------------------------- /FIleHashValidation/Get-RemoteFileAndConfirmHashValidationLocally.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/FIleHashValidation/Get-RemoteFileAndConfirmHashValidationLocally.ps1 -------------------------------------------------------------------------------- /Get-TenantIdFromDomain/Get-TenantIdFromDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Get-TenantIdFromDomain/Get-TenantIdFromDomain.ps1 -------------------------------------------------------------------------------- /Get-Win32AppsUsingMSAL/Get-Win32AppsUsingMSAL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Get-Win32AppsUsingMSAL/Get-Win32AppsUsingMSAL.ps1 -------------------------------------------------------------------------------- /GetMeABeer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/GetMeABeer.ps1 -------------------------------------------------------------------------------- /GraphApiToMSI/Add-GraphApiRoleToMSI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/GraphApiToMSI/Add-GraphApiRoleToMSI.ps1 -------------------------------------------------------------------------------- /Import-VSCodeThemeToTerminal/Import-VSCodeThemeToTerminal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Import-VSCodeThemeToTerminal/Import-VSCodeThemeToTerminal.ps1 -------------------------------------------------------------------------------- /Install-Fonts/Install-Fonts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Install-Fonts/Install-Fonts.ps1 -------------------------------------------------------------------------------- /Install-MicrosoftTeams/Install-MicrosoftTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Install-MicrosoftTeams/Install-MicrosoftTeams.ps1 -------------------------------------------------------------------------------- /Install-MicrosoftTeams/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Install-MicrosoftTeams/readme.md -------------------------------------------------------------------------------- /Install-Printers/Configure-Policies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Install-Printers/Configure-Policies.ps1 -------------------------------------------------------------------------------- /Install-Printers/Install-Printers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Install-Printers/Install-Printers.ps1 -------------------------------------------------------------------------------- /IntuneMonitoring/IntuneConfigMonitoring/IntuneConfigMonitoring.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/IntuneMonitoring/IntuneConfigMonitoring/IntuneConfigMonitoring.ps1 -------------------------------------------------------------------------------- /IntuneMonitoring/IntuneConfigMonitoring/appConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/IntuneMonitoring/IntuneConfigMonitoring/appConfig.json -------------------------------------------------------------------------------- /IntuneMonitoring/IntuneConfigSnapshot/IntuneConfigSnapshot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/IntuneMonitoring/IntuneConfigSnapshot/IntuneConfigSnapshot.ps1 -------------------------------------------------------------------------------- /IntuneMonitoring/IntuneConfigSnapshot/appConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/IntuneMonitoring/IntuneConfigSnapshot/appConfig.json -------------------------------------------------------------------------------- /IntuneMonitoring/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/IntuneMonitoring/readme.md -------------------------------------------------------------------------------- /Invoke-GraphConnector/Invoke-GraphConnector.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Invoke-GraphConnector/Invoke-GraphConnector.ps1 -------------------------------------------------------------------------------- /Invoke-GraphConnector/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Invoke-GraphConnector/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll -------------------------------------------------------------------------------- /Invoke-GraphConnector/Microsoft.IdentityModel.Clients.ActiveDirectory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Invoke-GraphConnector/Microsoft.IdentityModel.Clients.ActiveDirectory.dll -------------------------------------------------------------------------------- /Invoke-GraphConnector/appConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Invoke-GraphConnector/appConfig.json -------------------------------------------------------------------------------- /Invoke-GraphConnector/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Invoke-GraphConnector/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/LICENSE -------------------------------------------------------------------------------- /MSI-AzFunction-Demo/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/MSI-AzFunction-Demo/.funcignore -------------------------------------------------------------------------------- /MSI-AzFunction-Demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/MSI-AzFunction-Demo/.gitignore -------------------------------------------------------------------------------- /MSI-AzFunction-Demo/HttpTrigger1/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/MSI-AzFunction-Demo/HttpTrigger1/function.json -------------------------------------------------------------------------------- /MSI-AzFunction-Demo/HttpTrigger1/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/MSI-AzFunction-Demo/HttpTrigger1/run.ps1 -------------------------------------------------------------------------------- /MSI-AzFunction-Demo/HttpTrigger1/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } 4 | -------------------------------------------------------------------------------- /MSI-AzFunction-Demo/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/MSI-AzFunction-Demo/host.json -------------------------------------------------------------------------------- /MSI-AzFunction-Demo/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/MSI-AzFunction-Demo/profile.ps1 -------------------------------------------------------------------------------- /MSI-AzFunction-Demo/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/MSI-AzFunction-Demo/requirements.psd1 -------------------------------------------------------------------------------- /New-PolicyFromTemplate/New-PolicyFromTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/New-PolicyFromTemplate/New-PolicyFromTemplate.ps1 -------------------------------------------------------------------------------- /New-PolicyFromTemplate/restExamples/policyTemplates.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/New-PolicyFromTemplate/restExamples/policyTemplates.rest -------------------------------------------------------------------------------- /OMA-URI_CheatSheet/OMA-URI_CheatSheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/OMA-URI_CheatSheet/OMA-URI_CheatSheet.pdf -------------------------------------------------------------------------------- /PSConfAsia/Get-WordPressPostSummary.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/PSConfAsia/Get-WordPressPostSummary.ps1 -------------------------------------------------------------------------------- /PowerBI-GraphAuthentication/PowerBI_Graph_Authentication.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/PowerBI-GraphAuthentication/PowerBI_Graph_Authentication.pbit -------------------------------------------------------------------------------- /PowerBI-GraphAuthentication/PowerBI_Graph_Authentication_Updated.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/PowerBI-GraphAuthentication/PowerBI_Graph_Authentication_Updated.pbit -------------------------------------------------------------------------------- /Publish-ScriptToIntune/Publish-ScriptToIntune.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Publish-ScriptToIntune/Publish-ScriptToIntune.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/README.md -------------------------------------------------------------------------------- /Registry-Configuration/Registry-Configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Registry-Configuration/Registry-Configuration.ps1 -------------------------------------------------------------------------------- /Reset-SidecarScript/Reset-SideCarScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Reset-SidecarScript/Reset-SideCarScript.ps1 -------------------------------------------------------------------------------- /Reset-SidecarScript/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Reset-SidecarScript/readme.md -------------------------------------------------------------------------------- /ScheduledZoomPackager/Get-ZoomUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/ScheduledZoomPackager/Get-ZoomUpdate.ps1 -------------------------------------------------------------------------------- /Send-IntuneLogsToFlow/Send-IntuneLogsToFlow.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Send-IntuneLogsToFlow/Send-IntuneLogsToFlow.ps1 -------------------------------------------------------------------------------- /Set-RegistryValueForAllUsers/Set-RegistryValueForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Set-RegistryValueForAllUsers/Set-RegistryValueForAllUsers.ps1 -------------------------------------------------------------------------------- /Set-Timezone/Set-TimezoneFromIP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Set-Timezone/Set-TimezoneFromIP.ps1 -------------------------------------------------------------------------------- /Set-Timezone/Set-TimezoneFromLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Set-Timezone/Set-TimezoneFromLocation.ps1 -------------------------------------------------------------------------------- /Sync-SharepointFolder/Sync-SharepointFolder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Sync-SharepointFolder/Sync-SharepointFolder.ps1 -------------------------------------------------------------------------------- /Universal-Print-Printer-Install/Detect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Universal-Print-Printer-Install/Detect.ps1 -------------------------------------------------------------------------------- /Universal-Print-Printer-Install/Remediate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Universal-Print-Printer-Install/Remediate.ps1 -------------------------------------------------------------------------------- /Update-AutoPilotGroupTag/Update-AutoPilotGroupTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabs-not-spaces/CodeDump/HEAD/Update-AutoPilotGroupTag/Update-AutoPilotGroupTag.ps1 --------------------------------------------------------------------------------