Quantcast
Channel: SAPIEN Forums
Viewing all articles
Browse latest Browse all 311

PowerShell Studio • get-service startuptype returns nothing

$
0
0
Product: PowerShell Studio 2024 (64 Bit)
Build: v5.8.238
OS: Windows 11.0.22631
PS Version(s): 5.1.22621.1, 7.2.18

PSS seems to drop the StartupType property from get-service cmdlet. It will return starttype but thats no good to me as I want to get my hands on values of 'AutomaticDelayedStart' and starttype returns 'auto' instead of 'AutomaticDelayedStart'.

So for example, under a powershell CMD session
PS C:\Windows\System32> get-service | Select-Object Name, Startuptype, Status

Name StartupType Status
---- ----------- ------
.
.
.
BITS AutomaticDelayedStart Running

Under PSS using the same command
foreach ($Service in get-service | Select-Object Name, Startuptype, Status)
{
$Name = $Service.name.ToUpper()
$Start = $Service.StartupType
$State = $service.status
Write-Host "$Name $start $state"
}

returns
.
.
.
BITS Running

Statistics: Posted by owinsloe — Sun Mar 17, 2024 5:29 pm — Replies 3 — Views 25



Viewing all articles
Browse latest Browse all 311

Trending Articles