facenoise Posted March 4, 2017 Share Posted March 4, 2017 kodların üst tarafından yaphadi değişkenin içeriği gelecek, yani yaphadi değişkeninde explorer.exe, shutdown vb.. kodlar olacak ona göre program çalışacak. Ama daha ilk baştan shutdown kodunu bir değişkene atıp çalıştıramadım acaba bu iş nasıl çözebilirim? $yaphadi="Shutdown(6)" Run($yaphadi) diye düşündüm ama çalışmadı.. Quote Link to comment Share on other sites More sharing options...
ronaldinho424 Posted March 13, 2017 Share Posted March 13, 2017 $SD_LOGOFF (0) = Logoff $SD_SHUTDOWN (1) = Shutdown $SD_REBOOT (2) = Reboot $SD_FORCE (4) = Force $SD_POWERDOWN (8) = Power down $SD_FORCEHUNG (16) = Force if hung $SD_STANDBY (32) = Standby $SD_HIBERNATE (64) = Hibernate Shutdown(6) sadece bu şekilde olacak. ama istersen bu şekilde de yapabilirsin run("shutdown -r -t 10") Quote Link to comment Share on other sites More sharing options...
Mehmet Posted March 14, 2017 Share Posted March 14, 2017 $yaphadi= _Shutdown() ;~ Run($yaphadi) Func _Shutdown() $SorKapat = MsgBox(4, "Sor Kapat", "Bilgisayar Kapatılsınmı?") If $SorKapat == 6 Then Shutdown(1) EndIf EndFunc Quote Link to comment Share on other sites More sharing options...
Bultar Posted March 14, 2017 Share Posted March 14, 2017 shutdown -s -f -t 10 -r olursa reboot atıyor. Quote Link to comment Share on other sites More sharing options...
facenoise Posted March 15, 2017 Author Share Posted March 15, 2017 Çok teşekkürler, yaptım sağolun... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.