Popular Posts
javax.net.ssl.SSLHandshakeException: Connection closed by peer in Android 5.0 Lollipop Recently, there is a error occurs when access website via ssl connection like below although it worked fine several days ago. // Enable SSL... Enable SSL connection for Jsoup import org.jsoup.Connection; import org.jsoup.Jsoup; import javax.net.ssl.*; import java.io.IOException; import java.security.KeyManagement... Build an OpenVPN server on android device Preparation An android device, in this case, Sony xperia Z is used Root permission required Linux Deploy for deploy i...
Stats
runas
  1. RUNAS 使用方法:
  2.  
  3. RUNAS [ [/noprofile | /profile] [/env] [/netonly] ]
  4. /user: program
  5. RUNAS [ [/noprofile | /profile] [/env] [/netonly] ]
  6. /smartcard [/user:] program
  7. /noprofile 指定使用者的設定檔不該載入。
  8. 這會導致應用程式載入速度更快,
  9. 但可能引起一些應用程式運作失常。
  10. /profile 指定應該載入使用者的設定檔。
  11. 這是預設值。
  12. /env 使用目前的環境,不用使用者設定的環境。
  13. /netonly 如果指定的憑證是供遠端存取時才使用。
  14. /savecred 使用之前由使用者儲存的認證。
  15. 此選項在 Windows XP Home Edition 上無法使用
  16. 而且會被略過。
  17. /smartcard 當智慧卡提供了認證時使用。
  18. /user 格式如下 USER@DOMAIN DOMAIN\USER
  19. program EXE 的命令列。範例如下
  20. 範例:
  21. > runas /noprofile /user:mymachine\administrator cmd
  22. > runas /profile /env /user:mydomain\admin "mmc %windir%\system32\dsa.msc"
  23. > runas /env /user:user@domain.microsoft.com "notepad \"my file.txt\""
  24. 注意: 只有在提示時,才輸入使用者密碼。
  25. 注意: USER@DOMAIN /netonly 不相容。
  26. 注意: /profile /netonly 不相容。