Access office computer from anywhere without a VPN connection
You can run any one-line command in your office PC from anywhere just by sending the command through mail. You can get to know the ipconfig with this. Requirements: Office computer should be running some windows version MS Outlook should be the mail client. Steps: Open Outlook and press Alt+F11. This will open VB script editor. Alternatively you can open this through menu Tools > Macro > Visual Basic Editor. Copy paste the below code in the window appears. ' Author : Stalin Gino S Sub RunCommand(Item As Outlook.mailItem) 'Open mail, adress, attach report Dim strMsg Const olMailItem = 0 Dim comm As String Dim sFileName As String Dim iFileNum As Integer Dim sBuf As String sFileName = "D:\RunCommandOut.txt" Set objShell = CreateObject("WScript.Shell") co...
Comments
Post a Comment