Salman Chawhan

Highly skilled and experienced professional in the field of technology, specializing in system administration and voice systems. With a strong background in IT infrastructure management, I made significant contributions to the success of various organizations. In addition to proficiency in Technical Operations Manager, I also held the role of Voice President in my organization. In this capacity, overseeing the planning, implementation, and management of voice communication systems. my strong leadership skills, combined with a deep understanding of telephony technologies, have enabled me to enhance communication efficiency and streamline processes within the organization. I actively seek opportunities to expand my skill set and regularly participate in professional development programs and workshops. My passion for technology, coupled with my extensive experience and skills, has earned me a reputation as a reliable and accomplished Technical Operations Manager and Voice President. I continue to make a significant impact in the field, driving organizational success through my technical acumen, leadership abilities, and commitment to excellence.

IIS Redirect HTTP to HTTPS

Before redirection, we need SSL Certificate.For creating a free SSL Certificate Download Win-Acme it will automatically bind the certificate in IIS.Before generating certificate add-website under IIS for HTTP 1] Download…

Read more

How to Configure Pm2 Health for sending mails if any issue in services

Note: Replace yourdomain.com with you domain sudo su pm2 install pm2-healthvim ~/.pm2/module_conf.json {“pm2-logrotate”: {“max_size”: “500M”,“retain”: “200”,“compress”: “true”,“dateFormat”: “YYYY-MM-DD_HH-mm-ss”,“workerInterval”: “30”,“rotateInterval”: “* * * * 30”,“rotateModule”: “true”},“module-db-v2”: {“pm2-logrotate”: {},“pm2-health”: {}},“pm2-health”: {“smtp”: {“host”:…

Read more

How to auto-start Windows services

#start the following Windows services in the specified order: [Array] $Services = ‘MailService’,’SpamAssassin’,’OpenVPNServiceInteractive’,’Certify.Service’,’Schedule’; #loop through each service, if its not running, start it foreach($ServiceName in $Services){$arrService = Get-Service -Name $ServiceNamewrite-host…

Read more