Intune – Disable PIN for Windows 10
Normal behavior is when you add a computer to Azure Active Directory & Intune PIN is required. You can disable it on the Tenant level here:
Normal behavior is when you add a computer to Azure Active Directory & Intune PIN is required. You can disable it on the Tenant level here:
The best way is to use this scrip: https://gallery.technet.microsoft.com/scriptcenter/Update-the-Service-9e080ef8 If fail – Run the script as a local admin account – not a domain. You can finish manually it by local admin account: Set-AdfsSslCertificate -Thumbprint 2b02128a3fc867c65200e27bb1c25023d339f372 And as a domain account: Set-AdfsCertificate -CertificateType Service-Communications –Thumbprint 2b02128a3fc867c65200e27bb1c25023d339f372
I tried to use PowerShell script via Intune that remove my user from Windows Endpoint using powershell command Remove-LocalUser -Name “myuser”. It was not working, just because: , error = Remove-LocalUser : The term ‘Remove-LocalUser’ is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the […]
1. Stop Backup – without Erasing Data 2. Disable Soft Deletion in Recovery Service VaultId 3. Execute Script: $RG=backup-mig $Vault=backup-mig $VMName=medicareiisql $vault = Get-AzRecoveryServicesVault -ResourceGroupName $RG -Name $Vault $Container = Get-AzRecoveryServicesBackupContainer -ContainerType AzureVM -Status Registered -VaultId $vault.ID -FriendlyName $VMName $BackupItem = Get-AzRecoveryServicesBackupItem -Container $Container -WorkloadType AzureVM -VaultId $vault.ID Disable-AzRecoveryServicesBackupProtection -Item $BackupItem -VaultId $vault.ID -RemoveRecoveryPoints -Force
Fast SQL on Azure – nutshell: TempDB on fast local disk At least 3 disks for data and logs Read-only caching for data disks One of the most important things for SQL Server is to store TempDB on a fast ephemeral local – temporary disk. How to do it: Install SQL and configure it to […]