Windows Server
Cisco Jabber Restart Process
Cisco jabber is a tool which is cisco company release and help to people communication, messaging and collobration.
Sometimes we need to reset cisco jabber process. Today i will share a code that is run on powershell and stop and start the cisco jabber process
#Stop cisco jabber process
Get-Process -Name CiscoJabber |Stop-Process
# Wait 3 seconds
Start-Sleep -Seconds 3
#Start cisco jabber process
Start-Process "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Cisco Jabber 14.0\Cisco Jabber.lnk"
If you want to create a function that is automatically restart cisco jabber process on windows, It’s so simple.
function ciscojabberresetle
{
[CmdletBinding()]
Param
(
)
Process{
Get-Process -Name CiscoJabber |Stop-Process
Start-Sleep -Seconds 3
Start-Process "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Cisco Jabber 14.0\Cisco Jabber.lnk"
}
}
ciscojabberresetle
Just copy the upper code
1- Create a folder as a name ciscojabberresetle on C:\Users\%Username%\Documents\WindowsPowerShell\Modules\
2- save as ciscojabberresetle.psm1
3- Open the Windows powershell and write the powershell terminal ciscojabberresetle