Skip to main content

Reboot otomatis Windows Server 2003 dengan Scheduled Task

Windows Server 2003 mempunyai kemampuan untuk menjadwalkan server anda untuk reboot setiap waktu yang anda inginkan .adapun cara untuk menjadwalkan reboot dilakukan langkah-langkah berikut :

 Arahkan ke Start -> All Programs -> Accessories -> System Tools -> Scheduled Tasks.


Klik pada ikon Add Schedules Task lalu ikuti Wizardnya , Next .


abaikan daftar program, dan klik tombol Browse.
Arahkan ke /windows/system32 dan cari file bernama 'shutdown.exe'. pilih , dan klik Open

 Silahkan Masukan nama pada Schedule Task Anda , Selanjutnya pilih seberapa sering  server Anda untuk reboot, apakah itu harian, mingguan, atau bulanan , contoh saya pillih daily , next.


Silahkan tentukan Start time , Schedule Task ( Every day , Weekday , Every ...day ) Start date Schedule , saat ini memilih Start time 4:30 (jam 4 subuh) :)


masukkan user dan password administrator anda :

Centang pada Open advanced properties .


Finish lalu muncul task , lalu isikan Run : C:\WINDOWS\system32\shutdown.exe -r -t 00

-r      Restart/Reboot the computer
-t xx Mengatur waktu tertentu untuk shutdown, dalam hitungan detik
-s     Shutdown the computer
-c    “comment” Shutdown comment (maximum of 127 characters)

 jika ingin menampilkan Comment :

shutdown -s -t 120 -c "Server auto reboot,finish ur work !"

lalu Pilih Set Password , masukan password dan confirm password .klik Apply dan Ok

Auto Reboot sudah ada di List Task Scheduled


Troubleshoot 

Apabila saat klik Finish  Task Scheduled Wizard muncul Error 0x80070005 :

ini kemungkinan Administrator grup tidak mengijinkan mengakses C:\WINDOWS\Tasks folder.

buka command Prompt : C:\>cd windows 

ketik :    CACLS TASKS /E /G builtin\administrators:F






 Apabila muncul Error 0x80090016: Keyset does not exist.
  • The new task has been created, but may not run because the account information could not be set. The specific error is:
    0x80090016: Keyset does not exist.
  • The new task has been created, but may not run because the account information could not be set. The specific error is:
    0x8009000f: Object already exists.
1. Buka command Prompt ;
    ketik :   net start "protected storage"

 

 2. lalu klik dua kali My Computer, kemudian klik Folder Options pada menu Tools , di Tab View  
     Pilih Show Hidden Files
 3. Delete all file didalam folder  C:\Documents and Settings\All Users\Application Data\Microsoft
     \Crypto\RSA\S-1-5-18 
4.  Restart Komputer Anda , dan  run task.


Selamat Mencoba ...... :)

Taufan M  |email me|

Comments

Popular posts from this blog

[Arsip] Uninstal Zimbra Mail Server

UnInstalling Zimbra on Linux Uninstall Directions for Linux/All Other Operating Systems As root: 1) Run the commands: su – zimbra zmcontrol stop exit (you should be root after you run exit) 2a) Run the command:  ps -ef | grep -i zimbra If you see running processes 2b) Kill any lingering processes:  kill -9 <pid> 3a) Run the command:  df If you see "amavisd" 3b) run command:  umount /opt/zimbra/amavisd<-new-blah>/tmp 4)  cd /<tmp_tar_install_dir>/zcs/ 5) Run the command:  ./install.sh -u 6) Run the following commands to complete the unistall: rm -rf /opt/zimbra rm -rf /var/log/*zimbra* rm -rf /tmp/*zimbra* rm -rf /tmp/hsperfdata* rm -rf /tmp/install.* rm -rf /tmp/*swatch* rm -rf /tmp/log* Ensure that you removed ALL the files owned by the user zimbra AND that contain the name "zimbra" in: /var/log/ /tmp/ 7) Run the following commands to delete the users and groups: userdel zimbra userdel postfix groupdel zimbra groupdel postfix 8) Remove th...

Membuat fungsi “terbilang” Excel menggunakan macro VBA

Jika Anda ingin menerjemahkan Angka menjadi Kata-kata , contohnya saja dalam pembuatan Form Kwitansi suatu Transaksi , anda dapat membuatnya dengan menggunakan aplikasi Microsoft Excel dan Macro Visual Basic Application ( VBA ) .saya menggunakan Excel 2007 Untuk membuatnya silahkan ikuti langkah-langkah dibawah ini :  buka Microsoft Excel , lalu tekan alt+F11  Setelah Muncul Microsoft Visual Basic , lalu pilih Insert > module Isikan code Seperti diatas  silahkan anda download source code nya disini !! Save Book ( ctrl+S)   Save As type : pilih Excel Macro - Enable Workbook  (*.xlsm) lalu klik Save  pilih File > Close and return to microsoft excel , macro sudah dibuat , sekarang kita tinggal test macro tersebut Tempatkan cell A2 , pilih Formulas > Insert Function lalu pilih Category User Defined Terlihat Function terbilang yang sudah dibuat tadi di VBA , klik Ok Akan Tampil Form Seperti diatas ,  Nilai_angka  arahkan ke Cell A1 ( ters...