Langsung ke konten utama

Postingan

Packet Tracer 6.3.0

  Cisco Packet Tracer is a powerful network simulation program that allows students to experiment with network behavior and ask “what if” questions. As an integral part of the Networking Academy comprehensive learning experience, Packet Tracer provides simulation, visualization, authoring, assessment, and collaboration capabilities and facilitates the teaching and learning of complex technology concepts. Packet Tracer supplements physical equipment in the classroom by allowing students to create a network with an almost unlimited number of devices, encouraging practice, discovery, and troubleshooting. The simulation-based learning environment helps students develop 21st century skills such as decision making, creative and critical thinking, and problem solving. Packet Tracer complements the Networking Academy curricula, allowing instructors to easily teach and demonstrate complex technical concepts and networking systems design. The Packet Tracer software is available f...

Error opening Exchange Management Console (EMC) "The client cannot connect to the destination specified in the request."

Last week I ask by my client to create mailbox on mail server, we are using Exchange server 2010 for mail server, so I remote to the server to doing the request but I have problem when I opening EMC and connect to the server, I can’t connect to the server via EMC even I can’t connect to exchange server using shell, bellow is the screen shoot of error message; Error Message  “ The following error ocured while attempting to connect to the specified Exchange server ‘servername.local’: The attempt to connect to http://nameserver.local/PowerShell using “Kerberos” authentication failed: Connecting to remote server failed with the following error message “ The client cannot connect to the destination specified in the request. Verify the the service on the destination is running and is accepting requests. Consult the logs and documentation for the WS-Management service running on the destination, most commonly IIS or WinRM. If the destination is the WinRM service, run th...

Troubleshoot Asus x200M yang Mati Total

Baru-baru ini saya mengalami masalah pada netbook saya netbook Asus x200M yang saya beli 2 tahun lalu mengalami masalah mati total pada saat di pakai, netbook tiba2 saja mati, saya coba charge pun indikator batery pada notebook tidak menyala sudah coba segala cara termasuk menekan tombol power sekita 5 -10 menit namun tetap tidak ada tanda-tanda kehidupan. Awal masalah di karenakan pada saat memakai notebook dengan tidak di carge mengalami low-battery kemudian saya coba carge namun saya lupa apakah listrik nya masuk ke netbook atau tidak, kemudian tiba-tiba saja netbook nya mati, tidak bisa di charge dan di hidupkan manual dengan cara menekan tombol power yang lama pun tidak bisa Karena kedua cara tersebut tidak berhasil dan berhubung saya tidak bisa cabut batery netbook di karenakan battery nya tidak plug and play (unremovable) maka saya putuskan pergi ke tempat sevice namun beberapa tempat service mengatakan bahwa netbook saya mengalami kerusakan pada IC Powernya dan harus...

Set Default printer "Error 0x00000709: Can’t Set Default Printer"

Beberapa hari yang lalu saya mempunyai masalah dengan printer printer yang baru saya set di komputer client tidak bisa di jadikan default printer, setelah saya coba cari tau, ternyata untuk mengatasi masalah itu cukup simple. ok jika sobat mengalami hal yang sama seperti saya untuk menyelesaikan masalah tersebut kita perlu menghapus satu key pada register pc, ok langsung kita buka Register Editor dengan cara RUN-> Regedit Win+R -> ketik Regeditegedit Delete key "Device" pada HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Jika tidak bisa menghapus key tersebut, set permission dulu untuk key tersebut, caranya pilih menu Edit->Permission Setelah key tersebut berhasil di delete, restart PC atau notebook yang di gunakan kemudian coba set default printer lagi ~~>>Terima kasih<<~~

Error '' is not a valid login or you do not have permission” on sql server installation

Hari ini saya mengalami kondisi yang sangat aneh, saya tidak bisa menginstall SQL Server 2008 Express, sudah coba install SQL 2005, 2008 R2, 2012 semuanya sama tidak bisa dan mendapatkan error '' is not a valid login or you do not have permission” on sql server installation . Setelah beberapa lama saya mencari tahu di internet ternyata SQL Server tidak bisa di install ketika nama mesin (host) dengan nama user (windows user) yang di gunakan untuk prosess installasi sama, misal nama komputer "rimba" dan nama user juga "rimba" maka ketika kita coba untuk menginstall SQL Server akan terjadi error seperti di atas. Solusinya yaitu ganti nama komputer dan coba install lagi SQL server nya... ~~>Terima Kasih<<~~

Tutorial C# untuk pemula

Bagi yang berminat untuk belajar programming .NET menggunakan bahasa C# silahkan di unduh tutorial berikut; Begining Visual C# 2010 ~~>>Terima Kasih<<~~

error "Difference of two datetime values caused an overflow at runtime" pada saat membuka Performance Dashboard Report

Pada artikel sebelumnya saya menulis tentang “Installasi SQL Server 2005 Performance Dashboard Report” kali ini saya menuliskan bagaimana memperbaiki error "Difference of two datetime values caused an overflow at runtime" yang terjadi pada saat akan membuka report performance dashboard. Jika mengalami error tersebut pada saatmembuka performance dashboard report, edit setup.sql yang berada pada path “C:\Program Files\Microsoft SQL Server\90\Tools\PerformanceDashboard”, edit pada bagian berikut : sum(convert(bigint, datediff(ms, login_time, getdate()))) - sum(convert(bigint, s.total_elapsed_time)) as idle_connection_time, ganti script di atas dengan script di bawah ini;  sum(convert(bigint, CAST ( DATEDIFF ( minute, login_time, getdate()) AS BIGINT)*60000 + DATEDIFF ( millisecond, DATEADD ( minute, DATEDIFF ( minute, login_time, getdate() ), login_time ),getdate() ))) - sum(convert(bigint, s.total_elapsed_time)) as idle_connection_time, selanjutnya eksekusi kembali s...