Tag Archives: files

HOWTO setup and use OpenSSL local CA capabilities

Some weeks ago, to debug one of my programs, I needed my certification authority to produce my certificates, because self-signed certificates cannot be used anymore. After some days of investigations, I tracked down the process of setting up a local certification authority to produce all needed certificates using OpenSSL.exe (included in the library package) using the included OpenSSL.cfg. step 1 – create the needed folder-tree … Continue reading HOWTO setup and use OpenSSL local CA capabilities »

HOWTO convert a .rc file to VC++ flavored one

Recently I was in need to import a resource file (.rc) generated by ResEdit program into a Visual C++ program. As long you do not open it with the VC embedded editor, only can only add it to the project. Problems came when you try to use the embedded VC resource editor.  It usually fails to load, because of a problem in prsht.h.  I don’t … Continue reading HOWTO convert a .rc file to VC++ flavored one »

Mounting VHD files by command line

Today I needed to copy a DVD ISO image file outside a HyperV VM disk. I tried using Remote Desktop copy-and-paste feature but it failed. Looking over the web, I discovered that it is possible to mount .vhd file in order to access the contained files directly from the hosting machine.  This solution worked fine for me. According to this post, you have to: open … Continue reading Mounting VHD files by command line »