Entries for September, 2009

Check to See if PowerShell is Installed in NSIS

function fbs_click() {
u=location.href;
t=document.title;
window.open(“http://www.facebook.com/sharer.php?u=”+encodeURIComponent(u)+”&t=”+encodeURIComponent(t),”sharer”,”toolbar=0,status=0,width=626,height=436″);
return false;
}

html .fb_share_button {display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; height:15px; border:1px solid #d8dfea; background:url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif?8:26981) no-repeat top right;}
html .fb_share_button:hover {color:#fff; border-color:#295582; background:#3b5998 url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif?8:26981) no-repeat top right; text-decoration:none;}

Share

I recently built a graphical application entirely in Windows PowerShell.  While this may sound like a daunting task, it really wasn’t.  The GUI itself is constructed using [...]

Setting User Permissions on a Folder in PowerShell (Even if it’s a UNC Path)

function fbs_click() {
u=location.href;
t=document.title;
window.open(“http://www.facebook.com/sharer.php?u=”+encodeURIComponent(u)+”&t=”+encodeURIComponent(t),”sharer”,”toolbar=0,status=0,width=626,height=436″);
return false;
}

html .fb_share_button {display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; height:15px; border:1px solid #d8dfea; background:url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif?8:26981) no-repeat top right;}
html .fb_share_button:hover {color:#fff; border-color:#295582; background:#3b5998 url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif?8:26981) no-repeat top right; text-decoration:none;}

Share

Ever needed to assign permissions to a remote directory?  This is something I’ve been trying to do for QUITE some time.  Luckily, I’ve recently embraced…. and subsequently [...]