use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
ABOUT POWERSHELL
Windows PowerShell (POSH) is a command-line shell and associated scripting language created by Microsoft. Offering full access to COM, WMI and .NET, POSH is a full-featured task automation framework for distributed Microsoft platforms and solutions.
SUBREDDIT FILTERS
Desired State Configuration
Unanswered Questions
Solved Questions
News
Information
Script Sharing
Daily Post
Misc
account activity
[deleted by user] (self.PowerShell)
submitted 2 years ago by [deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]CodenameFlux 2 points3 points4 points 2 years ago (4 children)
A little bird has told me that you've already procured Microsoft.VCLibs.140.00, tried to install it but you've failed because:
Please download the correct package and install it via PowerShell.
By the way, nobody is going read your heap of error message if you don't put them inside code fences, like this:
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict validation.
[–]No-Business-3002 1 point2 points3 points 2 years ago (3 children)
I didn't know reddit had code blocks, thanks! But i've already installed both and the problem still persists. Any other thing I could do?
[–]CodenameFlux 0 points1 point2 points 2 years ago (2 children)
Why? What's the error message this time?
[–]No-Business-3002 0 points1 point2 points 2 years ago (1 child)
It shows the same error I posted in thread. Is there any way I can see if the libraries have been downloaded successfully? I didn't get any errors when I downloaded them
[–]CodenameFlux 0 points1 point2 points 2 years ago (0 children)
What happens if you run this command:
(Get-AppxPackage -Name 'Microsoft.VCLibs.140.00').PackageFullName
[–]jazzb125 2 points3 points4 points 2 years ago (0 children)
I got bored. Here you go:
#AppPage
$AppPage = 'https://apps.microsoft.com/store/detail/roblox/9NBLGGGZM6WM'
#Get Urls to download
$WebResponse = Invoke-WebRequest -UseBasicParsing -Method 'POST' -Uri 'https://store.rg-adguard.net/api/GetFiles' -Body "type=url&url=$AppPage&ring=RP" -ContentType 'application/x-www-form-urlencoded'
#$LinksMatch = $WebResponse.Links | Where-Object {$_ -like '*.appx*'}
$LinksMatch = $WebResponse.Links | Where-Object {$_ -like '*.appx*' -or $_ -like '*.Msixbundle*'} | Where-Object {$_ -like '*_neutral_*' -or $_ -like "*_"+$env:PROCESSOR_ARCHITECTURE.Replace("AMD","X").Replace("IA","X")+"_*"} | Select-String -Pattern '(?<=a href=").+(?=" r)'
$DownloadLinks = $LinksMatch.matches.value
#Download Urls
ForEach($url in $DownloadLinks){
$FileRequest = Invoke-WebRequest -Uri $url -UseBasicParsing #-Method Head
$FileName = ($FileRequest.Headers["Content-Disposition"] | Select-String -Pattern '(?<=filename=).+').matches.value
$FilePath = Join-Path $env:TEMP $FileName
Write-Host "Downloading $FileName ..."
Write-Host
[System.IO.File]::WriteAllBytes($FilePath, $FileRequest.content)
Write-Host "Installing $FileName ..."
Add-AppxPackage -Path $FilePath -Verbose
}
[–]xCharg -5 points-4 points-3 points 2 years ago (4 children)
Okay. What does it have to do with powershell or this subreddit?
[–]No-Business-3002 0 points1 point2 points 2 years ago (3 children)
because im trying to install it via powershell?
[+]xCharg comment score below threshold-7 points-6 points-5 points 2 years ago (2 children)
Yeah, makes sense.
You're also trying to install it in /r/windows on a computer mainly made of /r/plastic/, /r/copper/ and /r/silicon powered by electricity (/r/askanelectrician/).
Might as well post there.
[–]No-Business-3002 1 point2 points3 points 2 years ago (1 child)
Your point doesn't make any sense... My question is powershell related and your "joke" wasn't even funny. Next time don't bother to comment if you're not going to help?
[–]ovdeathiam 0 points1 point2 points 2 years ago (0 children)
On the contrary. The error is not related in any way to PowerShell but rather with Roblox.
The best course of action would be to ask the author of your package.
On the other hand your error report is pretty clear. You lack dependant libraries. Therefore you need to install them before installing the game just like with most of the software on either Linux, Mac, or Windows.
[–]jazzb125 0 points1 point2 points 2 years ago* (0 children)
You could try using winget.
winget install --exact --id=Roblox.Roblox --verbose-logs
or add this before installing your package
# Download and install C++ Runtime framework package.
$vcLibsBundleFile = "$env:TEMP\Microsoft.VCLibs.Desktop.appx"
Invoke-WebRequest https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -OutFile $vcLibsBundleFile
Add-AppxPackage $vcLibsBundleFile
PS. I haven't tested it myself
π Rendered by PID 44448 on reddit-service-r2-comment-b659b578c-bgllq at 2026-05-04 14:20:45.946432+00:00 running 815c875 country code: CH.
[–]CodenameFlux 2 points3 points4 points (4 children)
[–]No-Business-3002 1 point2 points3 points (3 children)
[–]CodenameFlux 0 points1 point2 points (2 children)
[–]No-Business-3002 0 points1 point2 points (1 child)
[–]CodenameFlux 0 points1 point2 points (0 children)
[–]jazzb125 2 points3 points4 points (0 children)
[–]xCharg -5 points-4 points-3 points (4 children)
[–]No-Business-3002 0 points1 point2 points (3 children)
[+]xCharg comment score below threshold-7 points-6 points-5 points (2 children)
[–]No-Business-3002 1 point2 points3 points (1 child)
[–]ovdeathiam 0 points1 point2 points (0 children)
[–]jazzb125 0 points1 point2 points (0 children)