├── .github └── workflows │ └── master-image-management.yml ├── Auto subscription └── auto-subscription.ps1 ├── Deployment ├── CoconutBeach │ ├── Parameters │ │ └── avd-environment.json │ ├── addsessionhost.ps1 │ ├── deploy-avd.ps1 │ └── sysprep-vm.ps1 ├── JuicyJungleBeast │ ├── Connect-AzAccount.ps1 │ ├── Parameters │ │ ├── avd-environment.parameters.json │ │ ├── connectivity.parameters.json │ │ └── initial_image.parameters.json │ ├── Templates │ │ ├── AVD │ │ │ ├── deploy-avd-diagnostics.bicep │ │ │ ├── deploy-avd-environment.bicep │ │ │ └── deploy-avd-sessionhosts.bicep │ │ ├── ComputeGallery │ │ │ └── deploy-shared-image-gallery.bicep │ │ ├── KeyVault │ │ │ └── deploy-keyvault-with-secret.bicep │ │ ├── LogAnalytics │ │ │ └── deploy-LogAnalytics.bicep │ │ ├── Network │ │ │ ├── deploy-vnet-with-subnet.bicep │ │ │ └── deploy-vnet-with-subnet.json │ │ └── VM │ │ │ └── main.create_image.bicep │ ├── main.bicep │ ├── main.json │ └── rest-apicommands.ps1 ├── MintyBreeze │ ├── Archive │ │ ├── assign-avd-applicationgroup.bicep │ │ ├── avd-diagnostics.parameters.json │ │ ├── avd-sessionhost.parameters.json │ │ ├── deploy-nsg.bicep │ │ ├── deploy-shared-image-gallery-version.bicep │ │ ├── keyvault-parameters.json │ │ ├── shared-image-gallery-version.parameters.json │ │ ├── shared-image-gallery.parameters.json │ │ └── vnet-with-subnet.parameters.json │ ├── Parameters │ │ ├── avd-environment.parameters.json │ │ └── initial_image.parameters.json │ ├── README.md │ ├── Templates │ │ ├── AVD │ │ │ ├── deploy-avd-diagnostics.bicep │ │ │ ├── deploy-avd-environment.bicep │ │ │ └── deploy-avd-sessionhosts.bicep │ │ ├── ComputeGallery │ │ │ └── deploy-shared-image-gallery.bicep │ │ ├── KeyVault │ │ │ └── deploy-keyvault-with-secret.bicep │ │ ├── LogAnalytics │ │ │ └── deploy-LogAnalytics.bicep │ │ ├── Network │ │ │ └── deploy-vnet-with-subnet.bicep │ │ └── VM │ │ │ └── main.create_image.bicep │ └── main.bicep ├── OrangeSunset │ └── avd-azure-cli-commands.ps1 ├── PineappleCitrus │ ├── authentication.ps1 │ └── rest-apicommands.ps1 ├── README.md ├── SantasRide │ ├── Pipelines │ │ ├── deploy-avd-resources.yml │ │ ├── deploy-avd-sessionhosts.yml │ │ ├── deploy-compute-gallery.yml │ │ ├── deploy-network-resources.yml │ │ ├── deploy-resourcegroup.yml │ │ └── master-avd-environment.yml │ ├── README.md │ └── Scripts │ │ ├── deploy-avd-resources.ps1 │ │ ├── deploy-avd-sessionhost.ps1 │ │ └── deploy-network-resources.ps1 └── StrawberryBanana │ ├── DevOps Pipelines │ ├── Master │ │ └── deploy-avd-environment.yml │ └── Templates │ │ └── create-pipelinevariables.yml │ ├── Parameters │ ├── avd-diagnostics.parameters.json │ ├── avd-hostpool.parameters.json │ ├── avd-sessionhost.parameters.json │ ├── network-nsg.parameters.json │ ├── network-with-subnet.parameters.json │ ├── resourcegroup.parameters.json │ ├── shared-image-gallery-version.parameters.json │ ├── shared-image-gallery.parameters.json │ └── vm.parameters.json │ ├── PowerShell │ └── sysprep.ps1 │ └── Templates │ ├── AVD │ ├── deploy-avd-appgroup.json │ ├── deploy-avd-availabilitySet.json │ ├── deploy-avd-diagnostics.json │ ├── deploy-avd-hostpool.json │ ├── deploy-avd-sessionhosts.json │ ├── deploy-avd-workspace.json │ └── deploy-avd.json │ ├── Compute │ └── deploy-vm.json │ ├── Network │ ├── deploy-network.json │ └── deploy-nsg.json │ ├── ResourceGroups │ └── deploy-resourcegroup.json │ └── SharedImageGallery │ ├── deploy-sig-version.json │ └── deploy-sig.json ├── FsLogix ├── configure-aad-fslogix.ps1 ├── deploy-fslogix-config.ps1 ├── local-domaininfo.ps1 └── test-kbrt.ps1 ├── ImageManagement ├── Packages │ └── MSIX │ │ └── AppInstaller │ │ ├── DesktopAppInstaller.appinstaller │ │ ├── Microsoft.DesktopAppInstaller_2021.1026.721.0_neutral_~_8wekyb3d8bbwe.msixbundle │ │ ├── Microsoft.UI.Xaml.2.6_2.62108.18004.0_x64__8wekyb3d8bbwe.appx │ │ └── Microsoft.VCLibs.140.00.UWPDesktop_14.0.30704.0_x64__8wekyb3d8bbwe.appx ├── Parameters │ └── new-image-parameters.json ├── Pipelines │ ├── deploy-baseImageVersion.yml │ ├── deploy-computeGallery.yml │ ├── deploy-imagedefinition.yml │ ├── deploy-imageversion-from-vm.yml │ ├── deploy-vm-from-imageversion.yml │ └── master-deploy-image.yml ├── Scripts │ ├── Image-Management.ps1 │ ├── Install-AppxApplication.ps1 │ ├── deploy-computegallery.ps1 │ ├── deploy-imagedefintion.ps1 │ ├── deploy-initial-vm.ps1 │ └── deploy-vm-from-image.ps1 ├── Untitled Diagram-Page-3.drawio.png ├── Untitled Diagram.drawio ├── global-overview.png ├── image-management-background ├── image-management.drawio ├── image-process.png ├── resource-deployment.png ├── sysprep.ps1 └── vm-to-sigversion.ps1 ├── IntuneConfigurations └── ConfigurationProfiles │ └── clipboard-transfer-direction.json ├── OperationNorthStar ├── Configurations │ ├── AVD-Optimization │ │ └── avd-optimization.settings.json │ └── OneDrive │ │ └── onedrive-settings.json ├── Drawings │ ├── operation-northstar-background.png │ ├── operation-northstar-onedrive-w.png │ ├── operation-northstar-onedrive.png │ ├── operation-northstar-update.png │ ├── operation-northstar-updates.drawio │ ├── operation-northstar-updates.drawio.png │ ├── operation-northstar-updates.png │ └── operation-northstar.drawio ├── README.md └── Scripts │ ├── .DS_Store │ ├── WinGet │ ├── .DS_Store │ ├── 7zip.7zip.installer.yaml │ ├── AppInstaller │ │ ├── Install-WinGetApplication.exe │ │ ├── Install-WinGetApplication.intunewin │ │ └── exe.ico │ ├── Deploy-Win32Apps.ps1 │ ├── Install-WinGetApplication.ps1 │ ├── IntuneWinAppUtil.exe │ └── manifests │ │ ├── a │ │ └── Adobe │ │ │ └── Reader │ │ │ └── 64-bit │ │ │ └── 21.007.20099 │ │ │ ├── Adobe.AdobeAcrobatReaderDC.installer.yaml │ │ │ ├── Adobe.AdobeAcrobatReaderDC.locale.en-US.yaml │ │ │ └── Adobe.AdobeAcrobatReaderDC.yaml │ │ ├── g │ │ └── Google │ │ │ └── Chrome │ │ │ └── 96.0.4664.45 │ │ │ ├── Google.Chrome.installer.yaml │ │ │ ├── Google.Chrome.locale.en-US.yaml │ │ │ └── Google.Chrome.yaml │ │ └── m │ │ └── Microsoft │ │ └── OneDrive │ │ └── 21.220.1024.0005 │ │ ├── Microsoft.OneDrive.installer.yaml │ │ ├── Microsoft.OneDrive.locale.en-US.yaml │ │ └── Microsoft.OneDrive.yaml │ ├── app-registration.ps1 │ ├── install-onedrive.ps1 │ └── ons-update.ps1 ├── PowerShellScripts └── SetClipboardRedirection │ └── set-clipboard_redirection.ps1 ├── README.md ├── SSO-ADFS └── local-ad-enrollment.ps1 ├── avd-thebig4.png └── blueprint-automation-workflow.png /.github/workflows/master-image-management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/.github/workflows/master-image-management.yml -------------------------------------------------------------------------------- /Auto subscription/auto-subscription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Auto subscription/auto-subscription.ps1 -------------------------------------------------------------------------------- /Deployment/CoconutBeach/Parameters/avd-environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/CoconutBeach/Parameters/avd-environment.json -------------------------------------------------------------------------------- /Deployment/CoconutBeach/addsessionhost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/CoconutBeach/addsessionhost.ps1 -------------------------------------------------------------------------------- /Deployment/CoconutBeach/deploy-avd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/CoconutBeach/deploy-avd.ps1 -------------------------------------------------------------------------------- /Deployment/CoconutBeach/sysprep-vm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/CoconutBeach/sysprep-vm.ps1 -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Connect-AzAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Connect-AzAccount.ps1 -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Parameters/avd-environment.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Parameters/avd-environment.parameters.json -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Parameters/connectivity.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Parameters/connectivity.parameters.json -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Parameters/initial_image.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Parameters/initial_image.parameters.json -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Templates/AVD/deploy-avd-diagnostics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Templates/AVD/deploy-avd-diagnostics.bicep -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Templates/AVD/deploy-avd-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Templates/AVD/deploy-avd-environment.bicep -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Templates/AVD/deploy-avd-sessionhosts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Templates/AVD/deploy-avd-sessionhosts.bicep -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Templates/ComputeGallery/deploy-shared-image-gallery.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Templates/ComputeGallery/deploy-shared-image-gallery.bicep -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Templates/KeyVault/deploy-keyvault-with-secret.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Templates/KeyVault/deploy-keyvault-with-secret.bicep -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Templates/LogAnalytics/deploy-LogAnalytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Templates/LogAnalytics/deploy-LogAnalytics.bicep -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Templates/Network/deploy-vnet-with-subnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Templates/Network/deploy-vnet-with-subnet.bicep -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Templates/Network/deploy-vnet-with-subnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Templates/Network/deploy-vnet-with-subnet.json -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/Templates/VM/main.create_image.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/Templates/VM/main.create_image.bicep -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/main.bicep -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/main.json -------------------------------------------------------------------------------- /Deployment/JuicyJungleBeast/rest-apicommands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/JuicyJungleBeast/rest-apicommands.ps1 -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Archive/assign-avd-applicationgroup.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Archive/assign-avd-applicationgroup.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Archive/avd-diagnostics.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Archive/avd-diagnostics.parameters.json -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Archive/avd-sessionhost.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Archive/avd-sessionhost.parameters.json -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Archive/deploy-nsg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Archive/deploy-nsg.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Archive/deploy-shared-image-gallery-version.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Archive/deploy-shared-image-gallery-version.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Archive/keyvault-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Archive/keyvault-parameters.json -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Archive/shared-image-gallery-version.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Archive/shared-image-gallery-version.parameters.json -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Archive/shared-image-gallery.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Archive/shared-image-gallery.parameters.json -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Archive/vnet-with-subnet.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Archive/vnet-with-subnet.parameters.json -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Parameters/avd-environment.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Parameters/avd-environment.parameters.json -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Parameters/initial_image.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Parameters/initial_image.parameters.json -------------------------------------------------------------------------------- /Deployment/MintyBreeze/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Templates/AVD/deploy-avd-diagnostics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Templates/AVD/deploy-avd-diagnostics.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Templates/AVD/deploy-avd-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Templates/AVD/deploy-avd-environment.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Templates/AVD/deploy-avd-sessionhosts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Templates/AVD/deploy-avd-sessionhosts.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Templates/ComputeGallery/deploy-shared-image-gallery.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Templates/ComputeGallery/deploy-shared-image-gallery.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Templates/KeyVault/deploy-keyvault-with-secret.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Templates/KeyVault/deploy-keyvault-with-secret.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Templates/LogAnalytics/deploy-LogAnalytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Templates/LogAnalytics/deploy-LogAnalytics.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Templates/Network/deploy-vnet-with-subnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Templates/Network/deploy-vnet-with-subnet.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/Templates/VM/main.create_image.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/Templates/VM/main.create_image.bicep -------------------------------------------------------------------------------- /Deployment/MintyBreeze/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/MintyBreeze/main.bicep -------------------------------------------------------------------------------- /Deployment/OrangeSunset/avd-azure-cli-commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/OrangeSunset/avd-azure-cli-commands.ps1 -------------------------------------------------------------------------------- /Deployment/PineappleCitrus/authentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/PineappleCitrus/authentication.ps1 -------------------------------------------------------------------------------- /Deployment/PineappleCitrus/rest-apicommands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/PineappleCitrus/rest-apicommands.ps1 -------------------------------------------------------------------------------- /Deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/README.md -------------------------------------------------------------------------------- /Deployment/SantasRide/Pipelines/deploy-avd-resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/SantasRide/Pipelines/deploy-avd-resources.yml -------------------------------------------------------------------------------- /Deployment/SantasRide/Pipelines/deploy-avd-sessionhosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/SantasRide/Pipelines/deploy-avd-sessionhosts.yml -------------------------------------------------------------------------------- /Deployment/SantasRide/Pipelines/deploy-compute-gallery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/SantasRide/Pipelines/deploy-compute-gallery.yml -------------------------------------------------------------------------------- /Deployment/SantasRide/Pipelines/deploy-network-resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/SantasRide/Pipelines/deploy-network-resources.yml -------------------------------------------------------------------------------- /Deployment/SantasRide/Pipelines/deploy-resourcegroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/SantasRide/Pipelines/deploy-resourcegroup.yml -------------------------------------------------------------------------------- /Deployment/SantasRide/Pipelines/master-avd-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/SantasRide/Pipelines/master-avd-environment.yml -------------------------------------------------------------------------------- /Deployment/SantasRide/README.md: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /Deployment/SantasRide/Scripts/deploy-avd-resources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/SantasRide/Scripts/deploy-avd-resources.ps1 -------------------------------------------------------------------------------- /Deployment/SantasRide/Scripts/deploy-avd-sessionhost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/SantasRide/Scripts/deploy-avd-sessionhost.ps1 -------------------------------------------------------------------------------- /Deployment/SantasRide/Scripts/deploy-network-resources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/SantasRide/Scripts/deploy-network-resources.ps1 -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/DevOps Pipelines/Master/deploy-avd-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/DevOps Pipelines/Master/deploy-avd-environment.yml -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/DevOps Pipelines/Templates/create-pipelinevariables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/DevOps Pipelines/Templates/create-pipelinevariables.yml -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Parameters/avd-diagnostics.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Parameters/avd-diagnostics.parameters.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Parameters/avd-hostpool.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Parameters/avd-hostpool.parameters.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Parameters/avd-sessionhost.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Parameters/avd-sessionhost.parameters.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Parameters/network-nsg.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Parameters/network-nsg.parameters.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Parameters/network-with-subnet.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Parameters/network-with-subnet.parameters.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Parameters/resourcegroup.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Parameters/resourcegroup.parameters.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Parameters/shared-image-gallery-version.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Parameters/shared-image-gallery-version.parameters.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Parameters/shared-image-gallery.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Parameters/shared-image-gallery.parameters.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Parameters/vm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Parameters/vm.parameters.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/PowerShell/sysprep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/PowerShell/sysprep.ps1 -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/AVD/deploy-avd-appgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/AVD/deploy-avd-appgroup.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/AVD/deploy-avd-availabilitySet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/AVD/deploy-avd-availabilitySet.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/AVD/deploy-avd-diagnostics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/AVD/deploy-avd-diagnostics.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/AVD/deploy-avd-hostpool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/AVD/deploy-avd-hostpool.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/AVD/deploy-avd-sessionhosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/AVD/deploy-avd-sessionhosts.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/AVD/deploy-avd-workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/AVD/deploy-avd-workspace.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/AVD/deploy-avd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/AVD/deploy-avd.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/Compute/deploy-vm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/Compute/deploy-vm.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/Network/deploy-network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/Network/deploy-network.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/Network/deploy-nsg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/Network/deploy-nsg.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/ResourceGroups/deploy-resourcegroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/ResourceGroups/deploy-resourcegroup.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/SharedImageGallery/deploy-sig-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/SharedImageGallery/deploy-sig-version.json -------------------------------------------------------------------------------- /Deployment/StrawberryBanana/Templates/SharedImageGallery/deploy-sig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/Deployment/StrawberryBanana/Templates/SharedImageGallery/deploy-sig.json -------------------------------------------------------------------------------- /FsLogix/configure-aad-fslogix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/FsLogix/configure-aad-fslogix.ps1 -------------------------------------------------------------------------------- /FsLogix/deploy-fslogix-config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/FsLogix/deploy-fslogix-config.ps1 -------------------------------------------------------------------------------- /FsLogix/local-domaininfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/FsLogix/local-domaininfo.ps1 -------------------------------------------------------------------------------- /FsLogix/test-kbrt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/FsLogix/test-kbrt.ps1 -------------------------------------------------------------------------------- /ImageManagement/Packages/MSIX/AppInstaller/DesktopAppInstaller.appinstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Packages/MSIX/AppInstaller/DesktopAppInstaller.appinstaller -------------------------------------------------------------------------------- /ImageManagement/Packages/MSIX/AppInstaller/Microsoft.DesktopAppInstaller_2021.1026.721.0_neutral_~_8wekyb3d8bbwe.msixbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Packages/MSIX/AppInstaller/Microsoft.DesktopAppInstaller_2021.1026.721.0_neutral_~_8wekyb3d8bbwe.msixbundle -------------------------------------------------------------------------------- /ImageManagement/Packages/MSIX/AppInstaller/Microsoft.UI.Xaml.2.6_2.62108.18004.0_x64__8wekyb3d8bbwe.appx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Packages/MSIX/AppInstaller/Microsoft.UI.Xaml.2.6_2.62108.18004.0_x64__8wekyb3d8bbwe.appx -------------------------------------------------------------------------------- /ImageManagement/Packages/MSIX/AppInstaller/Microsoft.VCLibs.140.00.UWPDesktop_14.0.30704.0_x64__8wekyb3d8bbwe.appx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Packages/MSIX/AppInstaller/Microsoft.VCLibs.140.00.UWPDesktop_14.0.30704.0_x64__8wekyb3d8bbwe.appx -------------------------------------------------------------------------------- /ImageManagement/Parameters/new-image-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Parameters/new-image-parameters.json -------------------------------------------------------------------------------- /ImageManagement/Pipelines/deploy-baseImageVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Pipelines/deploy-baseImageVersion.yml -------------------------------------------------------------------------------- /ImageManagement/Pipelines/deploy-computeGallery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Pipelines/deploy-computeGallery.yml -------------------------------------------------------------------------------- /ImageManagement/Pipelines/deploy-imagedefinition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Pipelines/deploy-imagedefinition.yml -------------------------------------------------------------------------------- /ImageManagement/Pipelines/deploy-imageversion-from-vm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Pipelines/deploy-imageversion-from-vm.yml -------------------------------------------------------------------------------- /ImageManagement/Pipelines/deploy-vm-from-imageversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Pipelines/deploy-vm-from-imageversion.yml -------------------------------------------------------------------------------- /ImageManagement/Pipelines/master-deploy-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Pipelines/master-deploy-image.yml -------------------------------------------------------------------------------- /ImageManagement/Scripts/Image-Management.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Scripts/Image-Management.ps1 -------------------------------------------------------------------------------- /ImageManagement/Scripts/Install-AppxApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Scripts/Install-AppxApplication.ps1 -------------------------------------------------------------------------------- /ImageManagement/Scripts/deploy-computegallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Scripts/deploy-computegallery.ps1 -------------------------------------------------------------------------------- /ImageManagement/Scripts/deploy-imagedefintion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Scripts/deploy-imagedefintion.ps1 -------------------------------------------------------------------------------- /ImageManagement/Scripts/deploy-initial-vm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Scripts/deploy-initial-vm.ps1 -------------------------------------------------------------------------------- /ImageManagement/Scripts/deploy-vm-from-image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Scripts/deploy-vm-from-image.ps1 -------------------------------------------------------------------------------- /ImageManagement/Untitled Diagram-Page-3.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Untitled Diagram-Page-3.drawio.png -------------------------------------------------------------------------------- /ImageManagement/Untitled Diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/Untitled Diagram.drawio -------------------------------------------------------------------------------- /ImageManagement/global-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/global-overview.png -------------------------------------------------------------------------------- /ImageManagement/image-management-background: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/image-management-background -------------------------------------------------------------------------------- /ImageManagement/image-management.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/image-management.drawio -------------------------------------------------------------------------------- /ImageManagement/image-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/image-process.png -------------------------------------------------------------------------------- /ImageManagement/resource-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/resource-deployment.png -------------------------------------------------------------------------------- /ImageManagement/sysprep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/sysprep.ps1 -------------------------------------------------------------------------------- /ImageManagement/vm-to-sigversion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/ImageManagement/vm-to-sigversion.ps1 -------------------------------------------------------------------------------- /IntuneConfigurations/ConfigurationProfiles/clipboard-transfer-direction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/IntuneConfigurations/ConfigurationProfiles/clipboard-transfer-direction.json -------------------------------------------------------------------------------- /OperationNorthStar/Configurations/AVD-Optimization/avd-optimization.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Configurations/AVD-Optimization/avd-optimization.settings.json -------------------------------------------------------------------------------- /OperationNorthStar/Configurations/OneDrive/onedrive-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Configurations/OneDrive/onedrive-settings.json -------------------------------------------------------------------------------- /OperationNorthStar/Drawings/operation-northstar-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Drawings/operation-northstar-background.png -------------------------------------------------------------------------------- /OperationNorthStar/Drawings/operation-northstar-onedrive-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Drawings/operation-northstar-onedrive-w.png -------------------------------------------------------------------------------- /OperationNorthStar/Drawings/operation-northstar-onedrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Drawings/operation-northstar-onedrive.png -------------------------------------------------------------------------------- /OperationNorthStar/Drawings/operation-northstar-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Drawings/operation-northstar-update.png -------------------------------------------------------------------------------- /OperationNorthStar/Drawings/operation-northstar-updates.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Drawings/operation-northstar-updates.drawio -------------------------------------------------------------------------------- /OperationNorthStar/Drawings/operation-northstar-updates.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Drawings/operation-northstar-updates.drawio.png -------------------------------------------------------------------------------- /OperationNorthStar/Drawings/operation-northstar-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Drawings/operation-northstar-updates.png -------------------------------------------------------------------------------- /OperationNorthStar/Drawings/operation-northstar.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Drawings/operation-northstar.drawio -------------------------------------------------------------------------------- /OperationNorthStar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/README.md -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/.DS_Store -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/.DS_Store -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/7zip.7zip.installer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/7zip.7zip.installer.yaml -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/AppInstaller/Install-WinGetApplication.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/AppInstaller/Install-WinGetApplication.exe -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/AppInstaller/Install-WinGetApplication.intunewin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/AppInstaller/Install-WinGetApplication.intunewin -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/AppInstaller/exe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/AppInstaller/exe.ico -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/Deploy-Win32Apps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/Deploy-Win32Apps.ps1 -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/Install-WinGetApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/Install-WinGetApplication.ps1 -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/IntuneWinAppUtil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/IntuneWinAppUtil.exe -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/manifests/a/Adobe/Reader/64-bit/21.007.20099/Adobe.AdobeAcrobatReaderDC.installer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/manifests/a/Adobe/Reader/64-bit/21.007.20099/Adobe.AdobeAcrobatReaderDC.installer.yaml -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/manifests/a/Adobe/Reader/64-bit/21.007.20099/Adobe.AdobeAcrobatReaderDC.locale.en-US.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/manifests/a/Adobe/Reader/64-bit/21.007.20099/Adobe.AdobeAcrobatReaderDC.locale.en-US.yaml -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/manifests/a/Adobe/Reader/64-bit/21.007.20099/Adobe.AdobeAcrobatReaderDC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/manifests/a/Adobe/Reader/64-bit/21.007.20099/Adobe.AdobeAcrobatReaderDC.yaml -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/manifests/g/Google/Chrome/96.0.4664.45/Google.Chrome.installer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/manifests/g/Google/Chrome/96.0.4664.45/Google.Chrome.installer.yaml -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/manifests/g/Google/Chrome/96.0.4664.45/Google.Chrome.locale.en-US.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/manifests/g/Google/Chrome/96.0.4664.45/Google.Chrome.locale.en-US.yaml -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/manifests/g/Google/Chrome/96.0.4664.45/Google.Chrome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/manifests/g/Google/Chrome/96.0.4664.45/Google.Chrome.yaml -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/manifests/m/Microsoft/OneDrive/21.220.1024.0005/Microsoft.OneDrive.installer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/manifests/m/Microsoft/OneDrive/21.220.1024.0005/Microsoft.OneDrive.installer.yaml -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/manifests/m/Microsoft/OneDrive/21.220.1024.0005/Microsoft.OneDrive.locale.en-US.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/manifests/m/Microsoft/OneDrive/21.220.1024.0005/Microsoft.OneDrive.locale.en-US.yaml -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/WinGet/manifests/m/Microsoft/OneDrive/21.220.1024.0005/Microsoft.OneDrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/WinGet/manifests/m/Microsoft/OneDrive/21.220.1024.0005/Microsoft.OneDrive.yaml -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/app-registration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/app-registration.ps1 -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/install-onedrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/install-onedrive.ps1 -------------------------------------------------------------------------------- /OperationNorthStar/Scripts/ons-update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/OperationNorthStar/Scripts/ons-update.ps1 -------------------------------------------------------------------------------- /PowerShellScripts/SetClipboardRedirection/set-clipboard_redirection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/PowerShellScripts/SetClipboardRedirection/set-clipboard_redirection.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/README.md -------------------------------------------------------------------------------- /SSO-ADFS/local-ad-enrollment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/SSO-ADFS/local-ad-enrollment.ps1 -------------------------------------------------------------------------------- /avd-thebig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/avd-thebig4.png -------------------------------------------------------------------------------- /blueprint-automation-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srozemuller/AVD/HEAD/blueprint-automation-workflow.png --------------------------------------------------------------------------------