Windows 10

오픈소스 비즈니스 컨설팅
둘러보기로 가기 검색하러 가기

Windows 10을 정리 한다.

컴퓨터 사용 시간 확인

컴퓨터 사용 시간 제한

  1. Windows에서 제공하는 자녀
  2. 외부 프로그램 사용
    1. 그린 i-Net
    2. 아리
    3. 아이키퍼
  3. 작업 스케쥴러로 사용 시간 제한
  4. PowserShell로 프로그램을 작성하여 사용시간 제한
  5. 윈도우 서비스 등록
  6. 컴퓨터 원격 종료

작업 스케쥴러

  • 권한 설정 : "관리도구 > 로컬보안정책 > 보안 설정 > 로컬 정책 > 사용자 권한 할당" 메뉴에서 일괄 작업으로 로그온에 예약 작업을 실행하는 계정을 등록 합니다.

Windows 10

PowerShell 프로그램을 실행하는 명령어

c:\windows\system32\WindowsPowerShell\v1.0\powershell.exe

-noprofile -executionpolicy bypass -file "C:\windows\system32\service32.ps1"

$status = "off"
$web = New-Object Net.WebClient
Try {
    $status = $web.DownloadString("http://www.jopenbusiness.com/onoff.php")
    # $status = Invoke-WebRequest "http://www.jopenbusiness.com/onoff.php"
} Catch {
    Start-Sleep -s 30
    Try {
        $status = $web.DownloadString("http://www.jopenbusiness.com/onoff.php")
        # $status = Invoke-WebRequest "http://www.jopenbusiness.com/onoff.php"
    } Catch {
        C:\Windows\System32\shutdown -s -t 1 -f -c
        # Stop-Computer
    }
}

if ($status -eq "off") {
    C:\Windows\System32\shutdown -s -t 1 -f -c
    # Stop-Computer
}


net user whkim /times:all
net user whkim /times:"Tuesday-Thursday,18:00-20:00;Saturday-Sunday,19:00-21:00" 
net user whkim

월 Monday        M
화 Tuesday       Tu
수 Wednesday     W
목 Thursday      Th
금 Friday        F
토 Saturday      Sa
일 Sunday        Su

유용한 Tip

  • 시작 프로그램 : Windows_R, shell:startup