RSS

Computers

VBScript to Verify Digitally Signed File

  • Friday, June 19th 2009

MSDN article The following sample VBScript code will verify a Signed file: Dim Signer, File, ShowUI, FileOK Set Signer = CreateObject(“Scripting.Signer”) File = “c:\newfile.wsf” ShowUI = True FileOK = Signer.VerifyFile(File, ShowUI) If FileOK Then WScript.Echo File & ” is trusted.” Else WScript.Echo File & ” is NOT trusted.” End If

Copy iPhone's iTunes Library to Windows

  • Saturday, April 25th 2009

Use Winamp Media Player and the ml_ipod plugin to copy music, video and audio books from an iPod or iPhone to a Windows computer. Use these two free programs to regain access to the music saved on an Apple multimedia device.  In short: copy your iPod/iPhone iTunes stuff to your hard drive! The processes and programs discussed in this article do NOT remove any Digital Rights Management (DRM) or copy protection from the media files.  This is simply for copying the files as is from the device to a computer hard drive. The protected and unprotected files are copied without modification.

Some bash aliases

  • Tuesday, August 26th 2008

These are a few of the aliases I like to put into my shell environment. nano /etc/bashrc # some aliases alias la=’ls -lah –color=auto’ alias ll=’ls -lh –color=auto’ alias cd..=’cd ..’ alias nano=’nano -wz’ alias pss=’ps -e -o pid,user,group,comm,args’

[RSS]