Changing the Startup Type
After installing the PLM Process server, you must manually change the startup type to Automatic to start the PLM Process XML Import Listeners automatically.
You can change the startup type to Automatic with the command line or the PowerShell prompt. To do so requires Administrator rights:
- cmd.exe
sc config FsInboxListenerService start=auto
- PowerShell.exe
Set-Service FsInboxListenerService -StartupType Automatic
To change the startup type back to Manual:
- cmd.exe
sc config FsInboxListenerService start=demand
- PowerShell.exe
Set-Service FsInboxListenerService -StartupType Manual