| Server IP : 185.208.173.17 / Your IP : 87.236.161.98 Web Server : Microsoft-IIS/10.0 System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64 User : IUSR ( 0) PHP Version : 7.4.13 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Windows/diagnostics/system/Printer/ |
Upload File : |
# Copyright ?2008, Microsoft Corporation. All rights reserved.
#
# Set the start mode for the spooler service
#
Import-LocalizedData -BindingVariable localizationString -FileName CL_LocalizationData
. .\CL_Utility.ps1
Write-DiagProgress -activity $localizationString.progress_rs_setSpoolerStartMode
#
# Check the spooler.
#
$spoolersvc = Get-WMIObject Win32_Service | Where-Object {$_.Name -eq "spooler"}
if($spoolersvc.StartMode -ne "Auto")
{
$spoolersvc.ChangeStartMode("Automatic")
}
#
# Also check WIA.
#
$stisvc = Get-WMIObject Win32_Service | Where-Object {$_.Name -eq "stisvc"}
if($stisvc.StartMode -ne "Auto")
{
$stisvc.ChangeStartMode("Automatic")
}