skip to Main Content

Azure – vs_buildtools.exe The application cannot find one of its required files, possibly because it was unable to create it in the folder

I have a Windows VM on Azure. On startup it runs powershell script: Start-Process cmd.exe -ArgumentList "/c whoami.exe 1> c:whoami.log 2>&1" -wait $tempPath = "$env:TEMP" $exePath = "$tempPathvs_buildtools.exe" Invoke-WebRequest -Uri https://aka.ms/vs/17/release/vs_BuildTools.exe -UseBasicParsing -OutFile $exePath Start-Process cmd.exe -ArgumentList "/c $exePath --quiet…

VIEW QUESTION

PowerShell Azure Function import module error

I am trying to import the "Microsoft.PowerApps.Administration.PowerShell" module in my PowerShell Azure Function App. The import is successful but the following command in my "run.ps1" file is throwing an error: Add-PowerAppsAccount -Username $username -Password $pass Following are the contents of…

VIEW QUESTION
Back To Top
Search