├── Azure ├── Access_Control_(IAM) │ ├── Classic-AdminRoles │ │ ├── Find-ClassicAdmins.ps1 │ │ └── readme.md │ ├── Get-AllAzureRolesGroup.ps1 │ └── iam-removeunknown.ps1 ├── Apps │ ├── Get-AllSecretsCertificates.ps1 │ ├── Get-Apps-with-too-long-expiration.ps1 │ ├── Get-ExpiredSecretsCertificates.ps1 │ ├── Set-AzureAppOwner.ps1 │ └── Set-AzureEnterpriseAppOwner.ps1 ├── Network │ └── Get-NetworkWatcherEnabledInfo.ps1 ├── PIM │ ├── Azure-resources │ │ ├── Apply │ │ │ ├── Pim-AddReader.ps1 │ │ │ ├── Pim-SetContributorEligibility.ps1 │ │ │ └── contributors.csv │ │ ├── Document │ │ │ ├── DocumentAllSubsAIM.ps1 │ │ │ ├── DocumentSingleSubsAIM.ps1 │ │ │ └── RolesUsedInSubs.ps1 │ │ ├── Modify │ │ │ ├── Basic │ │ │ │ └── Pim-EditContributorInAllRgs.ps1 │ │ │ ├── Pim-EditRoleInAllRgs.ps1 │ │ │ └── default-settings.json │ │ └── readme.md │ ├── AzureAD │ │ ├── Req-GlobalAdmin.ps1 │ │ ├── Req-UserAdministrator.ps1 │ │ ├── Req_PIMRoles.ps1 │ │ └── readme.md │ ├── Entra │ │ ├── Activate-MultipleRoles.ps1 │ │ └── readme.txt │ └── readme.md ├── ResourceGroup │ ├── Create-ResourceGroup │ │ ├── Create-ResourceGroup.ps1 │ │ └── Example-Inputfile.csv │ ├── Empty-RGs │ │ ├── Empty-RGs.ps1 │ │ └── Info.txt │ └── info.txt ├── ServicePrincipals │ └── Get-SPwithRoles.ps1 ├── SignIns │ ├── Check-LastUnsuccessFulLogin.ps1 │ ├── Check-UserLogins.ps1 │ ├── CollectionOfQuickCommands.ps1 │ └── Get-Last7DaysLogin.ps1 ├── VM │ ├── FindUnattachedDisks.ps1 │ └── Get-VMsExtenion.ps1 └── info.txt ├── General ├── Files │ ├── DeleteFiles.ps1 │ └── DeleteThatAnnoyingFile.ps1 └── Info.txt ├── LICENSE ├── OneDrive ├── Get-OneDriveSites.ps1 ├── Get-OneDriveUsage.ps1 ├── Move-ShareToOD4B.ps1 ├── PS-UploadToSharePoint.ps1 ├── PS-UploadToSharePoint.ps1.mp4 ├── PS-UploadToSharepoint.ps1 v2 ├── Set-OneDrive4BJunction.PS1 ├── Set-OneDriveQuota.ps1 ├── SharePointMigrationTool │ ├── README.txt │ ├── SMT-Migrate.ps1 │ └── User-Info.csv ├── Sharegate │ └── ShareGate-MigrateOnedrive.ps1 ├── Test-MigrationReadyness.ps1 └── Test-OneDrivePath.ps1 ├── README.md └── Sandbox ├── Chocolatey ├── Install-Choco.ps1 ├── Prep.cmd ├── SandBox-ChocoEdition-Advanced.wsb └── choco.wsb ├── Custom-Dns ├── Custom-DNS(Netsh).wsb ├── Custom-DNS(PS).wsb └── Readme.md ├── MoreConfigOptions.wsb ├── Ninite-Config ├── Prep.cmd └── SandBox-NiniteEdition-Advanced.wsb ├── Sandbox-ShareConnected.wsb ├── Set-WallPaper └── Set-WallPaper.ps1 └── Visual Studio Code ├── VSCode.wsb └── readme.txt /Azure/Access_Control_(IAM)/Classic-AdminRoles/Find-ClassicAdmins.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/Access_Control_(IAM)/Classic-AdminRoles/Find-ClassicAdmins.ps1 -------------------------------------------------------------------------------- /Azure/Access_Control_(IAM)/Classic-AdminRoles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/Access_Control_(IAM)/Classic-AdminRoles/readme.md -------------------------------------------------------------------------------- /Azure/Access_Control_(IAM)/Get-AllAzureRolesGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/Access_Control_(IAM)/Get-AllAzureRolesGroup.ps1 -------------------------------------------------------------------------------- /Azure/Access_Control_(IAM)/iam-removeunknown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/Access_Control_(IAM)/iam-removeunknown.ps1 -------------------------------------------------------------------------------- /Azure/Apps/Get-AllSecretsCertificates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/Apps/Get-AllSecretsCertificates.ps1 -------------------------------------------------------------------------------- /Azure/Apps/Get-Apps-with-too-long-expiration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/Apps/Get-Apps-with-too-long-expiration.ps1 -------------------------------------------------------------------------------- /Azure/Apps/Get-ExpiredSecretsCertificates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/Apps/Get-ExpiredSecretsCertificates.ps1 -------------------------------------------------------------------------------- /Azure/Apps/Set-AzureAppOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/Apps/Set-AzureAppOwner.ps1 -------------------------------------------------------------------------------- /Azure/Apps/Set-AzureEnterpriseAppOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/Apps/Set-AzureEnterpriseAppOwner.ps1 -------------------------------------------------------------------------------- /Azure/Network/Get-NetworkWatcherEnabledInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/Network/Get-NetworkWatcherEnabledInfo.ps1 -------------------------------------------------------------------------------- /Azure/PIM/Azure-resources/Apply/Pim-AddReader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Azure-resources/Apply/Pim-AddReader.ps1 -------------------------------------------------------------------------------- /Azure/PIM/Azure-resources/Apply/Pim-SetContributorEligibility.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Azure-resources/Apply/Pim-SetContributorEligibility.ps1 -------------------------------------------------------------------------------- /Azure/PIM/Azure-resources/Apply/contributors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Azure-resources/Apply/contributors.csv -------------------------------------------------------------------------------- /Azure/PIM/Azure-resources/Document/DocumentAllSubsAIM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Azure-resources/Document/DocumentAllSubsAIM.ps1 -------------------------------------------------------------------------------- /Azure/PIM/Azure-resources/Document/DocumentSingleSubsAIM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Azure-resources/Document/DocumentSingleSubsAIM.ps1 -------------------------------------------------------------------------------- /Azure/PIM/Azure-resources/Document/RolesUsedInSubs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Azure-resources/Document/RolesUsedInSubs.ps1 -------------------------------------------------------------------------------- /Azure/PIM/Azure-resources/Modify/Basic/Pim-EditContributorInAllRgs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Azure-resources/Modify/Basic/Pim-EditContributorInAllRgs.ps1 -------------------------------------------------------------------------------- /Azure/PIM/Azure-resources/Modify/Pim-EditRoleInAllRgs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Azure-resources/Modify/Pim-EditRoleInAllRgs.ps1 -------------------------------------------------------------------------------- /Azure/PIM/Azure-resources/Modify/default-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Azure-resources/Modify/default-settings.json -------------------------------------------------------------------------------- /Azure/PIM/Azure-resources/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Azure-resources/readme.md -------------------------------------------------------------------------------- /Azure/PIM/AzureAD/Req-GlobalAdmin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/AzureAD/Req-GlobalAdmin.ps1 -------------------------------------------------------------------------------- /Azure/PIM/AzureAD/Req-UserAdministrator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/AzureAD/Req-UserAdministrator.ps1 -------------------------------------------------------------------------------- /Azure/PIM/AzureAD/Req_PIMRoles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/AzureAD/Req_PIMRoles.ps1 -------------------------------------------------------------------------------- /Azure/PIM/AzureAD/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/AzureAD/readme.md -------------------------------------------------------------------------------- /Azure/PIM/Entra/Activate-MultipleRoles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/Entra/Activate-MultipleRoles.ps1 -------------------------------------------------------------------------------- /Azure/PIM/Entra/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Azure/PIM/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/PIM/readme.md -------------------------------------------------------------------------------- /Azure/ResourceGroup/Create-ResourceGroup/Create-ResourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/ResourceGroup/Create-ResourceGroup/Create-ResourceGroup.ps1 -------------------------------------------------------------------------------- /Azure/ResourceGroup/Create-ResourceGroup/Example-Inputfile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/ResourceGroup/Create-ResourceGroup/Example-Inputfile.csv -------------------------------------------------------------------------------- /Azure/ResourceGroup/Empty-RGs/Empty-RGs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/ResourceGroup/Empty-RGs/Empty-RGs.ps1 -------------------------------------------------------------------------------- /Azure/ResourceGroup/Empty-RGs/Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/ResourceGroup/Empty-RGs/Info.txt -------------------------------------------------------------------------------- /Azure/ResourceGroup/info.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Azure/ServicePrincipals/Get-SPwithRoles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/ServicePrincipals/Get-SPwithRoles.ps1 -------------------------------------------------------------------------------- /Azure/SignIns/Check-LastUnsuccessFulLogin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/SignIns/Check-LastUnsuccessFulLogin.ps1 -------------------------------------------------------------------------------- /Azure/SignIns/Check-UserLogins.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/SignIns/Check-UserLogins.ps1 -------------------------------------------------------------------------------- /Azure/SignIns/CollectionOfQuickCommands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/SignIns/CollectionOfQuickCommands.ps1 -------------------------------------------------------------------------------- /Azure/SignIns/Get-Last7DaysLogin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/SignIns/Get-Last7DaysLogin.ps1 -------------------------------------------------------------------------------- /Azure/VM/FindUnattachedDisks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/VM/FindUnattachedDisks.ps1 -------------------------------------------------------------------------------- /Azure/VM/Get-VMsExtenion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Azure/VM/Get-VMsExtenion.ps1 -------------------------------------------------------------------------------- /Azure/info.txt: -------------------------------------------------------------------------------- 1 | My Azure scripts (maybe) 2 | -------------------------------------------------------------------------------- /General/Files/DeleteFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/General/Files/DeleteFiles.ps1 -------------------------------------------------------------------------------- /General/Files/DeleteThatAnnoyingFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/General/Files/DeleteThatAnnoyingFile.ps1 -------------------------------------------------------------------------------- /General/Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/General/Info.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/LICENSE -------------------------------------------------------------------------------- /OneDrive/Get-OneDriveSites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/Get-OneDriveSites.ps1 -------------------------------------------------------------------------------- /OneDrive/Get-OneDriveUsage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/Get-OneDriveUsage.ps1 -------------------------------------------------------------------------------- /OneDrive/Move-ShareToOD4B.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/Move-ShareToOD4B.ps1 -------------------------------------------------------------------------------- /OneDrive/PS-UploadToSharePoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/PS-UploadToSharePoint.ps1 -------------------------------------------------------------------------------- /OneDrive/PS-UploadToSharePoint.ps1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/PS-UploadToSharePoint.ps1.mp4 -------------------------------------------------------------------------------- /OneDrive/PS-UploadToSharepoint.ps1 v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/PS-UploadToSharepoint.ps1 v2 -------------------------------------------------------------------------------- /OneDrive/Set-OneDrive4BJunction.PS1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/Set-OneDrive4BJunction.PS1 -------------------------------------------------------------------------------- /OneDrive/Set-OneDriveQuota.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/Set-OneDriveQuota.ps1 -------------------------------------------------------------------------------- /OneDrive/SharePointMigrationTool/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/SharePointMigrationTool/README.txt -------------------------------------------------------------------------------- /OneDrive/SharePointMigrationTool/SMT-Migrate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/SharePointMigrationTool/SMT-Migrate.ps1 -------------------------------------------------------------------------------- /OneDrive/SharePointMigrationTool/User-Info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/SharePointMigrationTool/User-Info.csv -------------------------------------------------------------------------------- /OneDrive/Sharegate/ShareGate-MigrateOnedrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/Sharegate/ShareGate-MigrateOnedrive.ps1 -------------------------------------------------------------------------------- /OneDrive/Test-MigrationReadyness.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/Test-MigrationReadyness.ps1 -------------------------------------------------------------------------------- /OneDrive/Test-OneDrivePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/OneDrive/Test-OneDrivePath.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/README.md -------------------------------------------------------------------------------- /Sandbox/Chocolatey/Install-Choco.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Chocolatey/Install-Choco.ps1 -------------------------------------------------------------------------------- /Sandbox/Chocolatey/Prep.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Chocolatey/Prep.cmd -------------------------------------------------------------------------------- /Sandbox/Chocolatey/SandBox-ChocoEdition-Advanced.wsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Chocolatey/SandBox-ChocoEdition-Advanced.wsb -------------------------------------------------------------------------------- /Sandbox/Chocolatey/choco.wsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Chocolatey/choco.wsb -------------------------------------------------------------------------------- /Sandbox/Custom-Dns/Custom-DNS(Netsh).wsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Custom-Dns/Custom-DNS(Netsh).wsb -------------------------------------------------------------------------------- /Sandbox/Custom-Dns/Custom-DNS(PS).wsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Custom-Dns/Custom-DNS(PS).wsb -------------------------------------------------------------------------------- /Sandbox/Custom-Dns/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Custom-Dns/Readme.md -------------------------------------------------------------------------------- /Sandbox/MoreConfigOptions.wsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/MoreConfigOptions.wsb -------------------------------------------------------------------------------- /Sandbox/Ninite-Config/Prep.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Ninite-Config/Prep.cmd -------------------------------------------------------------------------------- /Sandbox/Ninite-Config/SandBox-NiniteEdition-Advanced.wsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Ninite-Config/SandBox-NiniteEdition-Advanced.wsb -------------------------------------------------------------------------------- /Sandbox/Sandbox-ShareConnected.wsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Sandbox-ShareConnected.wsb -------------------------------------------------------------------------------- /Sandbox/Set-WallPaper/Set-WallPaper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Set-WallPaper/Set-WallPaper.ps1 -------------------------------------------------------------------------------- /Sandbox/Visual Studio Code/VSCode.wsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Visual Studio Code/VSCode.wsb -------------------------------------------------------------------------------- /Sandbox/Visual Studio Code/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OTvedt/Scripts-For-Sharing/HEAD/Sandbox/Visual Studio Code/readme.txt --------------------------------------------------------------------------------