Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Why does it take Task Manager longer to appear when you start it from the Ctrl+Alt+Del dialog?

Amitwas curious whyit takes longer for Task Manager to appear when you start itfrom the Ctrl+Alt+Del dialogcompared to launching it from the taskbar.Well, you can see the reason right there on the screen:You're launching it the long way around.If you launch Task Manager from the taskbar,Explorer just launches taskmgr.exevia the usual Create­Process mechanism,and Task Manager launches under the same credentialson the same desktop.On the other hand, when you use the secure attention sequence,the winlogon program receives the notification,switches to the secure desktop,and displays the Ctrl+Al...

3,162 0       WINDOWS TASK MANAGER START TIME CTRL+ALT+DEL


  Why developers need a Mac

I am by no means an Apple fan. For one thing, I find Windows (and Linux) stable and fast, so you are not going to hear me argue that my computing life was transformed once I made that Switch (with a capital letter). Admittedly that is partly because I am familiar with how to fix and tune Windows and remove foistware, but it is not that hard. For another, I am not an admirer of Apple’s secretive approach, or the fact that most requests for comment from journalists are responded to with silence. For a third, I dislike the notion that all apps for its popular mobile platform must be distri...

2,401 0       APPLE WINDOWS DEVELOPMENT IOS MAC


  C program to shutdown or turn off computer

C Program to shutdown your computer :- This program turn off i.e shutdown your computer system. Firstly it will asks you to shutdown your computer if you press 'y' the your computer will shutdown in 30 seconds, system function of "stdlib.h" is used to run an executable file shutdown.exe which is present in C:\WINDOWS\system32 in windows-xp. You can use various options while executing shutdown.exe for example -s option shutdown the computer after 30 seconds, if you wish to shutdown immediately then you can write "shutdown -s -t 0" as an argument to system function. If you wish to restart your c...

11,250 0       CODE WINDOWS C SHUTDOWN COMMAND


  How-to: Remotely shut down your computer

Think of this scenario; You are lying in bed and just finished watching a movie that you were streaming from a computer downstairs. You want to sleep, but you need to head downstairs to turn the computer off. Save some time, and do it from the computer upstairs.There are a number of ways that you can restart or shutdown remote computers. You could use a remote desktop connection, but there are quicker ways and we will look at them today.This article will show you various methods you can use to shutdown or restart computers on your network. We will look at:Command Line/ShortcutsWindow...

2,361 0       WINDOWS SHUTDOWN REMOTE CONTROL CMD


  Windows Security Improvements

Traenk is still upset by his recent dive into Windows security.  So much more was promised when the merger of Windows 9x and NT lines was announced, so long ago. I honestly expected better.Long ago, Microsoft announced that it would merge the then NT and Windows 9x lines of products.  Wow!  That means a file access control system, logging, different accounts and filespaces for accounts!  Finally!  We would have a secure version of Windows for our homes!And we do have the potential.  If you opt for the home versions of Windows, the ones most likely sold with a...

3,059 0       SECURITY WINDOWS IMPROVEMENT WINDOWS NT


  Run MySQL on Command Line in Windows

Sometimes if we want to run MySQL but we don't have phpMyAdmin installed. What should we do?On Windows we can run MySQL in following steps:Open Console Window->Type "mysqld -u root". This means we start the mysql server with username root. This program will handle all the communications between our console window and the actual data;After starting the server, we need to use a client to connect to the server and communicate with it. the mysql program is right for this. Next in the command console, we type "mysql -u root -p" to connect the server. By default, after the installation,the defaul...

8,164 0       WINDOWS MYSQL COMMAND LINE CONSOLE DEFAU


  Creating a PHP 5 Extension with Visual C++ 2005

This article describes the steps to create a custom PHP extension DLL for the Windows platform. The Zend API documentation that comes with PHP 5 on Windows (see php_manual_en.chm) does a good job explaining how to write extension methods, parse method parameters, and return values. But there is not currently a good step-by-step tutorial on how to get your first extension project up and running on Windows. The aim of this article is to fill that gap.PrerequisitesVisual Studio 2005You can alternately use the free Visual C++ Express Edition or the VC++ 8 compiler in the Windows SDK v6.0 if youââ...

4,370 0       PHP WINDOWS EXTENSION WRITING STEP BY ST


  socket_create() from command prompt with WAMP

Problem:I’m working on a wamp system, and have started playing around with sockets. I enabled sockets via the wamp interface:wamp : PHP settings : PHP extensions : php_socketsand could run my php file via my browser.When trying to run the same file via the command prompt (start : run : cmd), I got the following error:Fatal error: Call to undefined function socket_create() in … on line …Solution:The command prompt uses a different php.ini file to the apache server.The Apache php.ini file is accessible via the taskbar icon, and is located at:X:\WAMP INSTALL DIR\Apach...

6,416 0       PHP WAMP WINDOWS COMMAND LINE SOCKET