명령 프롬프트 시간대와 계정 설정

4077 단어 chocolateyWindows

timezone

  • Windows Azure의 Timezone 및 설정된 변경 방법 | Azure Fan
  • JST9로 설정
    tzutil /s "Tokyo Standard Time"
    
  • Tech TIPS: 명령줄에서 Windows 컨트롤 패널을 시작하는 항목-@IT
  • 영역 및 언어 옵션
    intl.cpl
    

    RDP 포트 변경

  • 3389->9100의 예
  • 무선 통신 라이센스
    netsh advfirewall firewall add rule name="tcp9100" localport=9100 dir=in action=allow protocol=TCP
    
    9100.reg
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp]
    "PortNumber"=dword:0000238c
    
    배치 파일의 경우
    reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp" /v PortNumber /t REG_DWORD /d
     0x0000238c /f
    

    무선 통신 라이센스를 제거하려는 경우
    netsh advfirewall firewall delete rule name="tcp9100"
    

    chocolatey

  • Chocolatey Gallery
  • @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString(' https://chocolatey.org/install.ps1')) "&& SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
    cinst -y firefox
    cinst -y filezilla.server
    cinst -y 7zip
    
  • FileZilla Server를 시작할 때 "could not load TLS network.Aborting start of administration interface"오류가 발생한 경우
  • KB2533623
  • 윈도우즈 7용

  • 계정 만들기

  • Tech TIPS: Windows 네트워크 명령 사용 방법-\IT
  • 계정 만들기
    net user user01 /add
    
    암호 지정(*에 암호 입력 필요)
    net user user01 *
    
    그룹에 추가
    net localgroup administrators user01 /add
    
    소속 단체의 확인
    net user user01
    

    기타


    자동 로그인 설정
    control userpasswords2
    
    재부팅
    shutdown -r -t 1
    

    좋은 웹페이지 즐겨찾기