Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

PENDING Trying to mass deploy Thorium E reader app but come across issues

ZohebShah

New Member
Messages
4
Reaction score
0
Points
1
Hello I'm trying to mass deploy Thorium E-reader but can't figure out what the detection method should be as there are no / switches for the app for the .exe and I can't figure out where the app is installed and what the detection method should be?

Here is the detection method I'm using:


Code:
$Thorium = Get-ItemProperty HKLM:\Software\WOW6432NOde\Microsoft\Windows\CurrentVersion\Uninstall\* | Where {$_.DisplayName -like "13998dff-ad91-57f4-b530-aa7ad6d4fea5*"}

if ([version]$Thorium.DisplayVersion -ge [version]'3.1.0') { 
Write-Host "Installed"
}
else {
}

This is the error I get in Software Center:

The software change returned error code 0x87D00607(-2016410105).
 
Hello I'm trying to mass deploy Thorium E-reader but can't figure out what the detection method should be as there are no / switches for the app for the .exe and I can't figure out where the app is installed and what the detection method should be?

Here is the detection method I'm using:


Code:
$Thorium = Get-ItemProperty HKLM:\Software\WOW6432NOde\Microsoft\Windows\CurrentVersion\Uninstall\* | Where {$_.DisplayName -like "13998dff-ad91-57f4-b530-aa7ad6d4fea5*"}

if ([version]$Thorium.DisplayVersion -ge [version]'3.1.0') {
Write-Host "Installed"
}
else {
}
You really should create a log file so you can see exactly what is detected or not.

What happens when you test this manually?
What happens when you test this manually using the local system account? https://www.recastsoftware.com/resources/how-to-access-the-local-system-account/
 

Forum statistics

Threads
7,037
Messages
27,518
Members
17,708
Latest member
pancasutresna
Back
Top