FortiClient

Systems

Microsoft

Linux

How to open a URL with CMD? - A simple BOT attack (Windows and Linux Command)

 


There is a simple command to open the website using the CMD. 

  • In Windows environment please use the below command.
start "" "https://systemssupports.blogspot.com/"
  • In Linux environment please use the below command.
xdg-open https://systemssupports.blogspot.com

If you want to setup a simple BOT attack to website, please use the below command,

for /l %x in (1, 1, 10) do (
   echo %x
   start "" "https://systemssupports.blogspot.com"
)

This file will be run the 10 times and if you want it increase it into 100 or 1000 please replace the 10 as 100 or 1000.

Please note that, this will be increase your processor and ram capacity will be harm to your computer.

My FortiClient VPN doesn't have the Uninstaller Option

 


My FortiClient VPN doesn't have the Uninstaller Option and only have the Repair Option. Therefor cannot Uninstall it.

If your FortiClient VPN or EMS doesn't have the uninstaller option, that means there might be have a corruption of VPN or restriction from the End Point Management System from your System Administrator.

If you want to uninstall it, there is one method to do it in using the the CMD.

  • Open Command Prompt (CMD) as an Administrator.

  • Type the following command and press "Enter" key.

wmic product where "name like 'Forti%%'" call uninstall /nointeractive
  • Then computer will be restart after the uninstall.
This command is very easy to uninstall all Forti production in your computer.

How to Access Shareable Drives of the Domain Environment from the Work-group or Personal Computers - FortiClient


There is more possible reason to you din't have the company Laptop, Company Laptop was out of battery, Laptop din't working, you forget to bring it home or company laptop was unexpectedly removed from the Domain. In that situation your intimidate boss required the special document at the company file server to re edit and if you have your own personal computer, there is much easier way to do it.

If your company use the Fortinet Firewall, you can download the "FortiClient" VPN from their official site. If not you can download the required VPN client software according to your company Firewall and installed it. If you din't know the settings of the VPN client software, you can contact your IT support.

  • Download and install the VPN Client software.
  • Connect to the VPN using your company login credentials. (Make sure before you have access to the company VPN)
  • Windows+R
  • Type your file server name or a IP address and click on the "OK". Please follow the below format,
    • \\FileServer (If you know the name)
    • \\199.99.9.9 (If you know the IP address)


  • Then you will be prompt the login windows.
    • User name: YourDoman\YourUserName (Ford.com\SamanthaB)
    • Password: Company login password 
  • Click on the "OK"
If you follow the above instruction, you can successfully access to the your file servers.

How to Get List of Microsoft SQL Server Instances

There is multiple way to identify the Microsoft SQL Server Instance names installed in the local machine or a server. Please refer the below instructions.

1. Using Registry Editor

  • Windows+R
  • Type "regedit" and click on the "OK"
  • Go to the below path
    • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names
2. Using Command Prompt
  • Windows+R
  • Type "CMD" and click on the "OK"
  • Copy and paste the below command
    • reg query "HKLM\Software\Microsoft\Microsoft SQL Server\Instance Names\SQL

3. Using Windows PowerShell
  • Windows+R
  • Type "powershell" and click on the "OK"
  • Copy and paste the below command
    • Get-ItemProperty ‘HKLM:\Software\Microsoft\Microsoft SQL Server\Instance Names\SQL’