PowerShell
-
Registering and Managing Azure AD Applications with PnP PowerShell
Integrating with Azure Active Directory (Azure AD) is essential for building modern enterprise solutions. By registering applications in Azure AD, you enable them to authenticate and gain access to secure APIs like Microsoft Graph. This blog post will guide you… Continue reading
-
Como Criar um Pen Drive Bootável com PowerShell
Como Criar um Pen Drive Bootável com PowerShell Neste post, vamos explorar um script em PowerShell que permite criar um pen drive bootável a partir de uma imagem ISO. Este processo é útil para instalar sistemas operacionais ou criar discos… Continue reading
-
PowerShell – ISO to USB – FAT 32
$usbDrive = Read-Host(“Digite a Unidade de USB”) Write-Host(“Voce Digitou $usbDrive confirma?”) Pause Write-Host(“Formatando Unidade $usbDrive”) Format-Volume -DriveLetter $usbDrive.Trim(“:”) -FileSystem FAT32 -Confirm:$false $isoPath = Read-Host(“Digite o caminho da ISO”) Write-Host(“Voce Digitou $isoPath confirma?”) Pause Write-Host(“Montando Unidade”) $mountResult = Mount-DiskImage -ImagePath $isoPath… Continue reading
-
Format-Volume do PowerShell
Explore Artigo técnico sobre o cmdlet Format-Volume do PowerShell e todas as suas opções. Explorando o Cmdlet Format-Volume no PowerShell O cmdlet Format-Volume no PowerShell é uma ferramenta poderosa para formatar volumes em sistemas Windows. Ele permite configurar diversos parâmetros… Continue reading
-
PowerShell para montar .ISO em USB
Este script monta um arquivo .ISO em um drive USB. Utilizei para extrair os arquivos de instalação do UBUNTU. CUIDADO!!! Este script pode destruir seu HD!!! Utilize apenas se você tem conhecimento de PowerShell Idéia Original em: https://techcommunity.microsoft.com/t5/user/viewprofilepage/user-id/2567200#profile https://techcommunity.microsoft.com/t5/windows-insider-program/how-do-i-burn-an-iso-image-to-usb-and-make-it-bootable/m-p/4188850 Continue reading





