When skype is added as an add-in then opening outlook calendar invite takes longer time to open. Disabling skype at outlook would resolve this.
At outlook go to file –> options –> Add-ins –> Manage – COM Add-ins GO –> At add-ins available uncheck skype related items.
Category: windows
send test email from server using powershell
use below code to send test email from server to check whether you are able to connect to smtp server.
send-mailmessage -from (“[give email address here]”) -to (“[give email address here]”) -subject “[wubject text here]” -body “[body of message here] ” -smtpServer “[smtp server name]”
send-mailmessage -from (“tek-jedi@tek-jedi.com”) -to (“tek-jedi@tek-jedi.com”) -subject “Test smpt” -body “testing smtp server email ” -smtpServer “smtp.tek-jedi.com”
how to get last shotdown time of the server
In command prompt entre systeminfo
‘System boot time’ will tell you the last boot time of the server.
how to map network drive in windows
If you want to map to a network drive below is the syntax
\\(server name)\(drive like c or d or etc.,)$\(folder name)
example
lets us assume server to be – “Tekweirdo”
Drive to connect is- d
folder name- “Cognos”
below would be the syntax
\\Tekweirdo\d$\Cognos