123

Azure -Adding Data Disks - PowerShell

Azure - Adding Data Disks - PowerShell  PowerShell command for adding a data disk $resourcegroup = 'azuredemo' $machinename = 'demovm' $location = 'Central US' $storageType = 'Premium_LRS' $dataDiskName = 'newdisk01' $dataDiskSize = 10 $datadiskConfig = New-AzDiskConfig -SkuName $storageType -Location $location -CreateOption Empty -DiskSizeGB $dataDiskSize $dataDisk01 = New-AzDisk -DiskName $dataDiskName -Disk $datadiskConfig -ResourceGroupName $resourcegroup $vm = Get-AzVM -Name $machinename -ResourceGroupName $resourcegroup $vm = Add-AzVMDataDisk -VM $vm -Name $dataDiskName -CreateOption Attach -ManagedDiskId $dataDisk01.Id -Lun 1 Update-AzVM -VM $vm -ResourceGroupName $resourcegroup ...

Create Azure virtual machines - CLI and PowerShell

Create Azure virtual machines - CLI and PowerShell  Azure CLI for quickly creating a virtual machine az vm create --resource-group azuredemo --name demovm --image win2016datacenter --admin-username demousr --admin-password AzurePortal@123 PowerShell command for quickly creating a virtual machine New-AzVm -ResourceGroupName azuredemo -Name backupvm -Location CentralUS -Image win2016datacenter -Credential (Get-Credential) ...

Install Azure CLI via PowerShell

Install Azure CLI via PowerShell You can also install the Azure CLI using PowerShell. Start PowerShell as administrator and run the following command: Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'; rm .\AzureCLI.msi This will download and install the latest version of the Azure CLI for Windows. If you already have a version installed, the installer will update the existing version. After the installation is complete, you will need to reopen PowerShell to use the Azure CLI. Run the Azure CLI You can now run the Azure CLI with the az command from either Windows Command Prompt or PowerShell.  az login If the CLI can open your default browser, it will...

Connect MS AZURE to Powershell

Connect MS AZURE  to Powershell // Allow remote signed scripts to run Set-ExecutionPolicy RemoteSigned //Installing the Azure PowerShell modules Install-Module -Name Az -AllowClobber -Scope CurrentUser // Import all the Azure modules Import-Module Az -Verbose // Connect to your Azure account Connect-AzAccount // Get all resource groups running in a particular region Get-AzResourceGroup -Location central...

DNS Query Commands

USEFUL DNS COMMAND SET (Make sure that your PC is added in domain and you are logging in domain account with admin privileges. You need to open command prompt and try the below commands. "net user userid /do" command will give many basic info in AD Mail Box Location dsquery * -filter sAMAccountName="userid" -attr msExchHomeServerName" Sip ID dsquery * -filter sAMAccountName="userid" -attr msRTCSIP-PrimaryUserAddress" Active Sync Status dsquery * -filter sAMAccountName="userid" -attr msExchMobileMailboxFlags" Active Sync Policy dsquery * -filter sAMAccountName="userid" -attr msExchMobileMailboxPolicyLink" BAND  dsquery * -filter sAMAccountName="userid" -attr SapCareerGroup" LYN OUT SIDE ACCESS dsquery * -filter sAMAccountName="userid" -attr  msRTCSIP-InternetAccessEnabled" FEDERATION...

Virus removal tools by Symantec

DateName 12/16/11Trojan.Zeroaccess Removal Tool 04/21/11W32.Qakbot Permission Reset Tool 04/21/11W32.Qakbot Permission Reset Tool 04/01/11Adware.Ezula Removal Tool 11/25/10W32.Ackantta!Dr Removal Tool 09/13/10W32.Imsolk.B@mm Removal Tool 09/06/10Backdoor.Tidserv Removal Tool 10/29/09Trojan.Ramvicrype Removal Tool 04/16/09Symantec Trojan.Ransomlock Key Generator Tool 04/15/09Trojan.Initbar Removal Tool 03/24/09Trojan.Xrupter Removal Tool 02/20/09W32.Virut Removal Tool 02/01/09Trojan.Bankpatch Removal Tool 01/13/09W32.Downadup Removal Tool 07/22/08Trojan.Brisv.A!inf Removal Tool 01/11/07Backdoor.Haxdoor.S/Trojan.Schoeberl.E Removal Tool 01/04/07W32.Spybot.ANDM Removal Tool 11/29/06W32.Spybot.ACYR Removal Tool 10/19/06W32.Rajump Removal Tool 10/17/06W32.Pasobir Removal Tool 10/04/06Symantec...

Pages 131234 »