'Techniques/Windows'에 해당되는 글 3건

  1. 2017.07.21 Create windows account on command line
  2. 2017.07.21 Enables Windows Feature on Command Line
  3. 2015.04.22 Windows security update command
2017. 7. 21. 13:44

# 계정 생성

>net user Test Test /ADD

The command completed successfully.


# 생성계정 그룹 등록

>net localgroup Administrators Test /add

The command completed successfully.

Posted by CoolDragon
2017. 7. 21. 13:34


### 관리자 모드로 실행해야 함 ###

> Dism /online /Get-Features


### FTP 활성화 ###

> DISM /Online /Enable-Feature /FeatureName:IIS-WebServer /FeatureName:IIS-WebServerRole /FeatureName:IIS-FTPServer /FeatureName:IIS-FTPSvc /FeatureName:IIS-FTPExtensibility

> echo %errorlevel%


참조

https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/enable-or-disable-windows-features-using-dism

Posted by CoolDragon
2015. 4. 22. 11:52

windows server 2003

c:/> wuauclt /detectnow /reportnow


above windows server 2008 

c:/> wuapp

Posted by CoolDragon