Search Results

0
votes

How do I setup a networked drive through a VPN server?

Often the best way is to make the home box a VPN router, and establish a remote connection to your home network over the VPN. Then, it is just as if you plugged in. This requires that your …
1
vote

Detect Windows Desktop Change

Desktops A desktop has a logical display surface and contains user interface objects such as windows, menus, and hooks; it can be used to create and manage windows. Each desktop object is a …
1
vote

PHP 4 and 5, Ctrl-C, system(), and child processes.

This issue occurs in at least PHP 5.1.2. When a SIGINT is sent via CTRL+C or CTRL+BREAK, the handler is called. If this handler sends a SIGTERM to other children, the signals are not receiv …
2
votes

How do I get a notification when user creates a mount point?

API hooking on SetVolumeMountPoint should let you intercept volume mounts. I'm not sure about network shares though. But it wouldn't be an 'ugly hack'. What you're trying to do is what ho …
1
vote

Is there a GTK terminal component that can be used under Windows?

Gnuplot wxt provides a terminal which is compiled with GTK on X and uses the win32 API on windows. It uses the WxWindows interface to compile into both environments. …
1
vote

Resize Encrypted Windows Partition

No, a partition resizer must actually modify the underlying file system. Because the drive is encrypted, you would need a 'SafeBoot' aware partition resizer. I don't know of any. …
3
votes

Remote assistance Linux to Windows

There's an app, Remotedesktop Client. Comes with Debian, so you should be able to install it. It is an RDP client, and can connect to XP and Windows 2003 server, and other versions what support R …
4
votes

How can a Perl script know its own memory footprint?

This will show you how: http://perldoc.perl.org/Devel/Peek.html Also, …