--- tags: ccdc, CCDC_Practice --- # Creating CCSClient Service ## Windows - Rayce B. Toms ### Setup in Command Prompt (as Administrator) #### Download the Windows CCS Client and NSSM (Non-Sucking Service Manager) ```cmd certutil -urlcache -split -f http://192.168.5.43:8080/CCSClientWindows.zip C:\Windows\Temp\client.zip certutil -urlcache -split -f http://nssm.cc/release/nssm-2.24.zip C:\Windows\Temp\service.zip explorer C:\Windows\Temp\ ``` #### Extract the client and nssm binary for your architecture in the GUI to C:\CCS\ #### Install the client as a service with nssm ```cmd cd C:\CCS\ nssm install ``` #### Set the service parameters accordingly Path: > C:\CCS\CCSClient.exe Startup Directory: > C:\CCS\ Arguments: > 192.168.5.43:80 <CLIENTID> Service name: > CCSClient #### Remove Zip Files and Start service ```cmd del C:\Windows\Temp\*.zip sc start CCSClient ```