160308 w10 iot core 스터디, cmd line util, os 시작/종료, pssession연결, psdrive마운트

Edit

Update account password:

net user Administrator [new password]

Set password

net user [account-username] [new-password]

Query and set device name:

SetComputerName [new machinename]

Setting startup app:

IotStartup list lists installed applications
IotStartup list headed lists installed headed applications
IotStartup list headless lists installed headless applications
IotStartup list [MyApp] list installed applications that match pattern MyApp
IotStartup add adds headed and headless applications
IotStartup add headed [MyApp] adds headed applications that match pattern MyApp. Pattern must match only one application.
IotStartup add headless [Task1] adds headless applications that match pattern Task1
IotStartup remove removes headed and headless applications
IotStartup remove headed [MyApp] removes headed applications that match pattern MyApp
IotStartup remove headless [Task1] removes headless applications that match pattern Task1
IotStartup startup lists headed and headless applications registered for startup
IotStartup startup [MyApp] lists headed and headless applications registered for startup that match pattern MyApp
IotStartup startup headed [MyApp] lists headed applications registered for startup that match MyApp
IotStartup startup headless [Task1] lists headless applications registered for startup that match Task1
For further help, try IotStartup help

Set Boot Option (Headless vs. headed boot):

setbootoption.exe [headed | headless]

Device drivers:

devcon.exe /?

Services:

net [start | stop] [service name]

Shutdown/restart device:

To shut down your device, type shutdown /s /t 0
To restart the device, use the /r switch instead with the command shutdown /r /t 0

Set display resolution

SetDisplayResolution [width] [height]

iot 부팅

c:\Program Files (x86)\Microsoft IoT\contfig.txt 복사 –>> 루트

iot core 초기연결

PS C:\WINDOWS\system32> net start winrm

PS C:\WINDOWS\system32> Set-Item WSMan:\localhost\Client\TrustedHosts -Value 169.254.112.99
WinRM 보안 구성
이 명령에서 WinRM 클라이언트에 대한 TrustedHosts 목록을 수정합니다. TrustedHosts 목록에 있는 컴퓨터가 인증되지 않을 수
있으며 클라이언트에서 자격 증명 정보를 이러한 컴퓨터에 보낼 수도 있습니다. 이 목록을 수정하시겠습니까?
[Y] 예(Y)  [N] 아니요(N)  [S] 일시 중단(S)  [?] 도움말 (기본값은 "Y"): y


PS C:\WINDOWS\system32> Enter-PSSession -ComputerName 169.254.112.99 -Credential 169.254.112.99\Administrator


[169.254.112.99]: PS C:\Data\Users\Administrator> net user Administrator password
The command completed successfully.


[169.254.112.99]: PS C:\Data\Users\Administrator> setcomputername firstrp2
Computer name changed successfully. Please reboot the device for changes to take effect.


[169.254.112.99]: PS C:\Data\Users\Administrator> shutdown /r /t 0
System will shutdown in 0 seconds...


PS C:\temp> Set-Item WSMan:\localhost\Client\TrustedHosts -Value firstrp2


PS C:\temp> Enter-PSSession -ComputerName firstrp2 -Credential firstrp2\administrator


[firstrp2]: PS C:\Data\Users\Administrator\Documents> cd /


[firstrp2]: PS C:\> ls
    Directory: C:\
Mode                LastWriteTime         Length Name
----                -------------         ------ ----
d----l       10/30/2015   5:46 AM                CrashDump
d----l       10/30/2015   5:46 AM                Data
d-----       10/30/2015   5:46 AM                EFI
d----l       10/30/2015   5:46 AM                EFIESP
d-----       10/30/2015   5:46 AM                Program Files
d-----       10/30/2015   5:46 AM                Program Files (x86)
d-----       10/30/2015   5:46 AM                PROGRAMS
d-----       10/30/2015   5:46 AM                SystemData
d-r---       10/30/2015   5:46 AM                Users
d-----       10/30/2015   1:14 PM                Windows

장비 접속시 패스워드 스킵하기

PS C:\> $password = ConvertTo-SecureString "password" -AsPlainText -Force


PS C:\> $cred = New-Object System.Management.Automation.PSCredential("firstrp2\administrator", $password)


PS C:\> Enter-PSSession -ComputerName firstrp2 -Credential $cred


[firstrp2]: PS C:\Data\Users\Administrator\Documents>

노트북, 디바이스간 파일공유

PS C:\temp> New-PSDrive -Name firstrp2 -PSProvider FileSystem -Root \\firstrp2\c$ -Credential firstrp2\administrator
Name           Used (GB)     Free (GB) Provider      Root                                               
----           ---------     --------- --------      ----                                               
firstrp2                               FileSystem    \\firstrp2\c$



PS C:\temp> cd firstrp2:\


PS firstrp2:\> ls
    디렉터리: \\firstrp2\c$
Mode                LastWriteTime         Length Name
----                -------------         ------ ----
d----l     2015-10-30   오후 9:46                CrashDump
d----l     2015-10-30   오후 9:46                Data
d-----     2015-10-30   오후 9:46                EFI
d----l     2015-10-30   오후 9:46                EFIESP
d-----     2015-10-30   오후 9:46                Program Files
d-----     2015-10-30   오후 9:46                Program Files (x86)
d-----     2015-10-30   오후 9:46                PROGRAMS
d-----     2015-10-30   오후 9:46                SystemData
d-----     2015-10-30   오후 1:04                temp
d-r---     2015-10-30   오후 9:46                Users
d-----     2015-10-31   오전 5:14                Windows
%23%20160308%20w10%20iot%20core%20%uC2A4%uD130%uB514%2C%20cmd%20line%20util%2C%20os%20%uC2DC%uC791/%uC885%uB8CC%2C%20pssession%uC5F0%uACB0%2C%20psdrive%uB9C8%uC6B4%uD2B8%0A%0A@%28%uD669%uD604%uB3D9%20%uB178%uD2B8%uBD81%29%5Biotcore%2C%20kakaocat%5D%0A%0A%5Btoc%5D%0A%0A%0A%23%23%20IoT%20Core%20Command%20Line%20Utils%0Ahttps%3A//ms-iot.github.io/content/en-US/win10/tools/CommandLineUtils.htm%0A%0A%23%23%23%20Update%20account%20password%3A%0A%60%60%60bash%0Anet%20user%20Administrator%20%5Bnew%20password%5D%0A%60%60%60%0A%0A%23%23%23%20Set%20password%0A%60%60%60bash%0Anet%20user%20%5Baccount-username%5D%20%5Bnew-password%5D%0A%60%60%60%0A%0A%23%23%23%20Query%20and%20set%20device%20name%3A%0A%60%60%60bash%0ASetComputerName%20%5Bnew%20machinename%5D%0A%60%60%60%0A%0A%23%23%23%20Setting%20startup%20app%3A%0A%60IotStartup%20list%20lists%60%20installed%20applications%0A%60IotStartup%20list%20headed%20lists%60%20installed%20headed%20applications%0A%60IotStartup%20list%20headless%20lists%60%20installed%20headless%20applications%0A%60IotStartup%20list%20%5BMyApp%5D%20list%60%20installed%20applications%20that%20match%20pattern%20MyApp%0A%60IotStartup%20add%60%20adds%20headed%20and%20headless%20applications%0A%60IotStartup%20add%20headed%20%5BMyApp%5D%60%20adds%20headed%20applications%20that%20match%20pattern%20MyApp.%20Pattern%20must%20match%20only%20one%20application.%0A%60IotStartup%20add%20headless%20%5BTask1%5D%60%20adds%20headless%20applications%20that%20match%20pattern%20Task1%0A%60IotStartup%20remove%60%20removes%20headed%20and%20headless%20applications%0A%60IotStartup%20remove%20headed%20%5BMyApp%5D%60%20removes%20headed%20applications%20that%20match%20pattern%20MyApp%0A%60IotStartup%20remove%20headless%20%5BTask1%5D%60%20removes%20headless%20applications%20that%20match%20pattern%20Task1%0A%60IotStartup%20startup%20lists%60%20headed%20and%20headless%20applications%20registered%20for%20startup%0A%60IotStartup%20startup%20%5BMyApp%5D%60%20lists%20headed%20and%20headless%20applications%20registered%20for%20startup%20that%20match%20pattern%20MyApp%0A%60IotStartup%20startup%20headed%20%5BMyApp%5D%60%20lists%20headed%20applications%20registered%20for%20startup%20that%20match%20MyApp%0A%60IotStartup%20startup%20headless%20%5BTask1%5D%60%20lists%20headless%20applications%20registered%20for%20startup%20that%20match%20Task1%0AFor%20further%20help%2C%20try%20%60IotStartup%20help%60%0A%0A%23%23%23%20Set%20Boot%20Option%20%28Headless%20vs.%20headed%20boot%29%3A%0A%60%60%60bash%0Asetbootoption.exe%20%5Bheaded%20%7C%20headless%5D%0A%60%60%60%0A%0A%23%23%23%20Device%20drivers%3A%0A%60%60%60bash%0Adevcon.exe%20/%3F%0A%60%60%60%0A%0A%23%23%23%20Services%3A%0A%60%60%60bash%0Anet%20%5Bstart%20%7C%20stop%5D%20%5Bservice%20name%5D%0A%60%60%60%0A%0A%23%23%23%20Shutdown/restart%20device%3A%0ATo%20shut%20down%20your%20device%2C%20type%20%60shutdown%20/s%20/t%200%60%0ATo%20restart%20the%20device%2C%20use%20the%20/r%20switch%20instead%20with%20the%20command%20%60shutdown%20/r%20/t%200%60%0A%0A%23%23%23%20Set%20display%20resolution%0A%60%60%60bash%0ASetDisplayResolution%20%5Bwidth%5D%20%5Bheight%5D%0A%60%60%60%0A%0A%0A%0A%23%23%20iot%20%uBD80%uD305%0Ac%3A%5CProgram%20Files%20%28x86%29%5CMicrosoft%20IoT%5Ccontfig.txt%20%uBCF5%uC0AC%20--%3E%3E%20%uB8E8%uD2B8%0A%0A%0A%23%23%20iot%20core%20%uCD08%uAE30%uC5F0%uACB0%0A%60%60%60bash%0APS%20C%3A%5CWINDOWS%5Csystem32%3E%20net%20start%20winrm%0A%0APS%20C%3A%5CWINDOWS%5Csystem32%3E%20Set-Item%20WSMan%3A%5Clocalhost%5CClient%5CTrustedHosts%20-Value%20169.254.112.99%0AWinRM%20%uBCF4%uC548%20%uAD6C%uC131%0A%uC774%20%uBA85%uB839%uC5D0%uC11C%20WinRM%20%uD074%uB77C%uC774%uC5B8%uD2B8%uC5D0%20%uB300%uD55C%20TrustedHosts%20%uBAA9%uB85D%uC744%20%uC218%uC815%uD569%uB2C8%uB2E4.%20TrustedHosts%20%uBAA9%uB85D%uC5D0%20%uC788%uB294%20%uCEF4%uD4E8%uD130%uAC00%20%uC778%uC99D%uB418%uC9C0%20%uC54A%uC744%20%uC218%0A%uC788%uC73C%uBA70%20%uD074%uB77C%uC774%uC5B8%uD2B8%uC5D0%uC11C%20%uC790%uACA9%20%uC99D%uBA85%20%uC815%uBCF4%uB97C%20%uC774%uB7EC%uD55C%20%uCEF4%uD4E8%uD130%uC5D0%20%uBCF4%uB0BC%20%uC218%uB3C4%20%uC788%uC2B5%uB2C8%uB2E4.%20%uC774%20%uBAA9%uB85D%uC744%20%uC218%uC815%uD558%uC2DC%uACA0%uC2B5%uB2C8%uAE4C%3F%0A%5BY%5D%20%uC608%28Y%29%20%20%5BN%5D%20%uC544%uB2C8%uC694%28N%29%20%20%5BS%5D%20%uC77C%uC2DC%20%uC911%uB2E8%28S%29%20%20%5B%3F%5D%20%uB3C4%uC6C0%uB9D0%20%28%uAE30%uBCF8%uAC12%uC740%20%22Y%22%29%3A%20y%0A%0A%0APS%20C%3A%5CWINDOWS%5Csystem32%3E%20Enter-PSSession%20-ComputerName%20169.254.112.99%20-Credential%20169.254.112.99%5CAdministrator%0A%0A%0A%5B169.254.112.99%5D%3A%20PS%20C%3A%5CData%5CUsers%5CAdministrator%3E%20net%20user%20Administrator%20password%0AThe%20command%20completed%20successfully.%0A%0A%0A%5B169.254.112.99%5D%3A%20PS%20C%3A%5CData%5CUsers%5CAdministrator%3E%20setcomputername%20firstrp2%0AComputer%20name%20changed%20successfully.%20Please%20reboot%20the%20device%20for%20changes%20to%20take%20effect.%0A%0A%0A%5B169.254.112.99%5D%3A%20PS%20C%3A%5CData%5CUsers%5CAdministrator%3E%20shutdown%20/r%20/t%200%0ASystem%20will%20shutdown%20in%200%20seconds...%0A%0A%0APS%20C%3A%5Ctemp%3E%20Set-Item%20WSMan%3A%5Clocalhost%5CClient%5CTrustedHosts%20-Value%20firstrp2%0A%0A%0APS%20C%3A%5Ctemp%3E%20Enter-PSSession%20-ComputerName%20firstrp2%20-Credential%20firstrp2%5Cadministrator%0A%0A%0A%5Bfirstrp2%5D%3A%20PS%20C%3A%5CData%5CUsers%5CAdministrator%5CDocuments%3E%20cd%20/%0A%0A%0A%5Bfirstrp2%5D%3A%20PS%20C%3A%5C%3E%20ls%0A%20%20%20%20Directory%3A%20C%3A%5C%0AMode%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20LastWriteTime%20%20%20%20%20%20%20%20%20Length%20Name%0A----%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-------------%20%20%20%20%20%20%20%20%20------%20----%0Ad----l%20%20%20%20%20%20%2010/30/2015%20%20%205%3A46%20AM%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20CrashDump%0Ad----l%20%20%20%20%20%20%2010/30/2015%20%20%205%3A46%20AM%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Data%0Ad-----%20%20%20%20%20%20%2010/30/2015%20%20%205%3A46%20AM%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20EFI%0Ad----l%20%20%20%20%20%20%2010/30/2015%20%20%205%3A46%20AM%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20EFIESP%0Ad-----%20%20%20%20%20%20%2010/30/2015%20%20%205%3A46%20AM%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Program%20Files%0Ad-----%20%20%20%20%20%20%2010/30/2015%20%20%205%3A46%20AM%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Program%20Files%20%28x86%29%0Ad-----%20%20%20%20%20%20%2010/30/2015%20%20%205%3A46%20AM%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20PROGRAMS%0Ad-----%20%20%20%20%20%20%2010/30/2015%20%20%205%3A46%20AM%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20SystemData%0Ad-r---%20%20%20%20%20%20%2010/30/2015%20%20%205%3A46%20AM%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Users%0Ad-----%20%20%20%20%20%20%2010/30/2015%20%20%201%3A14%20PM%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Windows%0A%60%60%60%0A%0A%0A%0A%0A%23%23%20%uC7A5%uBE44%20%uC811%uC18D%uC2DC%20%uD328%uC2A4%uC6CC%uB4DC%20%uC2A4%uD0B5%uD558%uAE30%0A%60%60%60bash%0APS%20C%3A%5C%3E%20%24password%20%3D%20ConvertTo-SecureString%20%22password%22%20-AsPlainText%20-Force%0A%0A%0APS%20C%3A%5C%3E%20%24cred%20%3D%20New-Object%20System.Management.Automation.PSCredential%28%22firstrp2%5Cadministrator%22%2C%20%24password%29%0A%0A%0APS%20C%3A%5C%3E%20Enter-PSSession%20-ComputerName%20firstrp2%20-Credential%20%24cred%0A%0A%0A%5Bfirstrp2%5D%3A%20PS%20C%3A%5CData%5CUsers%5CAdministrator%5CDocuments%3E%0A%60%60%60%0A%0A%0A%0A%0A%0A%23%23%20%uB178%uD2B8%uBD81%2C%20%uB514%uBC14%uC774%uC2A4%uAC04%20%uD30C%uC77C%uACF5%uC720%0A%60%60%60bash%0APS%20C%3A%5Ctemp%3E%20New-PSDrive%20-Name%20firstrp2%20-PSProvider%20FileSystem%20-Root%20%5C%5Cfirstrp2%5Cc%24%20-Credential%20firstrp2%5Cadministrator%0AName%20%20%20%20%20%20%20%20%20%20%20Used%20%28GB%29%20%20%20%20%20Free%20%28GB%29%20Provider%20%20%20%20%20%20Root%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0A----%20%20%20%20%20%20%20%20%20%20%20---------%20%20%20%20%20---------%20--------%20%20%20%20%20%20----%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0Afirstrp2%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20FileSystem%20%20%20%20%5C%5Cfirstrp2%5Cc%24%0A%0A%0A%0APS%20C%3A%5Ctemp%3E%20cd%20firstrp2%3A%5C%0A%0A%0APS%20firstrp2%3A%5C%3E%20ls%0A%20%20%20%20%uB514%uB809%uD130%uB9AC%3A%20%5C%5Cfirstrp2%5Cc%24%0AMode%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20LastWriteTime%20%20%20%20%20%20%20%20%20Length%20Name%0A----%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-------------%20%20%20%20%20%20%20%20%20------%20----%0Ad----l%20%20%20%20%202015-10-30%20%20%20%uC624%uD6C4%209%3A46%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20CrashDump%0Ad----l%20%20%20%20%202015-10-30%20%20%20%uC624%uD6C4%209%3A46%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Data%0Ad-----%20%20%20%20%202015-10-30%20%20%20%uC624%uD6C4%209%3A46%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20EFI%0Ad----l%20%20%20%20%202015-10-30%20%20%20%uC624%uD6C4%209%3A46%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20EFIESP%0Ad-----%20%20%20%20%202015-10-30%20%20%20%uC624%uD6C4%209%3A46%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Program%20Files%0Ad-----%20%20%20%20%202015-10-30%20%20%20%uC624%uD6C4%209%3A46%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Program%20Files%20%28x86%29%0Ad-----%20%20%20%20%202015-10-30%20%20%20%uC624%uD6C4%209%3A46%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20PROGRAMS%0Ad-----%20%20%20%20%202015-10-30%20%20%20%uC624%uD6C4%209%3A46%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20SystemData%0Ad-----%20%20%20%20%202015-10-30%20%20%20%uC624%uD6C4%201%3A04%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20temp%0Ad-r---%20%20%20%20%202015-10-30%20%20%20%uC624%uD6C4%209%3A46%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Users%0Ad-----%20%20%20%20%202015-10-31%20%20%20%uC624%uC804%205%3A14%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Windows%0A%60%60

이 글은 Evernote에서 작성되었습니다. Evernote는 하나의 업무 공간입니다. Evernote를 다운로드하세요.

댓글