Sign in
|
Join
|
Help
in
Current Tags
MVPs
MVP Blogs
(Entire Site)
Tech On Q
Technology On Queue
Home
Articles
Blogs
Forums
This Blog
Home
Syndication
RSS
Atom
Comments RSS
Recent Posts
PDF attachments for the handouts given out at the session
What is managed services?
Sharing this
Why Vista?
Microsoft Says No Client Backup In SBS 2008
Tags
Active Directory
Announcement
Archiving
Article
Backup
Backup and Archiving
backup free online storage
bitmap
Blogging
Book
Comment
Communication
Communities
Community
ctp
Database
DateTime
Disaster Recovery
EBS
Event
Exchange
Extending
Family Support
Freeware Updates
fun
Grateful Dead
Hardware
Hey!
How-To
Imaging
Industry News
Internet
Internet Security
ISA Server
IT Forum
Knowledge Base Articles
liveMeeting
Macs in SBSLand
Messaging
Microsoft
Miscellaneous Nothings
Mobility
Movies and Television
Multimedia
Network Administration
Network Tools
News
OCS
Open Source
Patch Management
Patching issues
PC Hygiene
PC Hygiene and Security
Personal
Personal Media Players
Personal Productivity
Podcast
PoSH Challenge
PowerShell
PowerTab
Printing
Productivity
Quickbooks 2007
quickbooks 2008
Rants
Record Desktop or Screen Capture
Remote Desktop and Control
sbs 2008
SBS Blog
Scripting
Scripting games
Security
Shameless plug
Sharepoint
smbnation
Software
SQL Server
System Management
Systems Management
TabExpansion
TechEd
Technical Stuff
text
Tips
Tips and Tweaks
Training
Tweaks
Update
Video
Virtualization
Vista
Voice Ignite
Web
WebCast
Windows
Windows Server
Windows Server 2008
WMI
WSUS
XPsp3
Archives
May 2008
(69)
April 2008
(146)
March 2008
(137)
February 2008
(164)
January 2008
(145)
December 2007
(156)
November 2007
(147)
October 2007
(318)
September 2007
(73)
August 2007
(49)
July 2007
(10)
June 2007
(1)
May 2007
(2)
March 2007
(1)
MVPs
Browse by Tags
All Tags
»
Hey!
(
RSS
)
Active Directory
ctp
DateTime
Event
GUI
PowerShell
Registry
XML
Hey PowerShell Guy !, How Can I Retrieve All the Values in a Registry Key?
Today's Hey Scripting Guy ! column , How Can I Retrieve All the Values in a Registry Key? , Shows a 38 line VbScript to get the Values in a registry key. In a PowerShell console it just takes this simple line to do the same : get-ItemProperty 'hkcu...
Posted
Apr 08 2008, 01:10 PM
by
The PowerShell Guy
Filed under:
PowerShell
,
Hey!
Hey PowerShellGuy!,How Can I Check to See if Two Lines of Text are in a File and, If They Are Not, Append Those Lines to the File?
How Can I Check to See if Two Lines of Text are in a File and, If They Are Not, Append Those Lines to the File? Translation to PowerShell of a Hey, Scripting Guy! column that shows you how to check a text file for specific lines containing double quote...
Posted
Apr 07 2008, 05:16 PM
by
The PowerShell Guy
Filed under:
PowerShell
,
Hey!
Hey PowerShell Guy !,How Can I Separate The Month From the Year in a Date String Like 122007?
How Can I Separate The Month From the Year in a Date String Like 122007? [datetime]::ParseExact(122007,'Myyyy',$null) | ft Month,Year You can see you can use ParseExact to convert a custom format to d dateTime OBject from there it is simple of...
Posted
Apr 04 2008, 08:11 PM
by
The PowerShell Guy
Filed under:
PowerShell
,
DateTime
,
Hey!
Hey PowerShellGuy !, How Can I Determine the Currency Symbol in Use on a Computer?
From the Scripting Son article : How Can I Determine the Currency Symbol in Use on a Computer? 3 ways to do the same in PowerShell : (gp 'hkcu:\Control panel\International').sCurrency (get-culture).NumberFormat.CurrencySymbol '{0:c}' Read...
Posted
Apr 04 2008, 07:33 PM
by
The PowerShell Guy
Filed under:
PowerShell
,
Hey!
,
Registry
Hey PowerShell Guy! How Can I Replace Incorrect Dates in My File Names?
No solutions to post today , so time for a small Hey scripting guy ! translation : How Can I Replace Incorrect Dates in My File Names? dir *.jpg | ren -new {$_.name -replace "(\d{1,2})-(\d{1,2})-07",'$1-$2-08' } To keep the example clear...
Posted
Feb 25 2008, 02:38 PM
by
The PowerShell Guy
Filed under:
PowerShell
,
Hey!
Hey PowerShell Guy !, How Can I Remove Extraneous Spaces From Fields in a Text File?
A little one before the, 2008 Winter Scripting Games The PowerShell version of the Hey Scripting guy VBScript version : How Can I Remove Extraneous Spaces From Fields in a Text File? (gc c:\scripts\test.txt) -replace ' {2,}','' PoSH>...
Posted
Feb 11 2008, 01:23 PM
by
The PowerShell Guy
Filed under:
PowerShell
,
Hey!
Hey PowerShell Guy!, How Can I Create an Windows Form For Displaying Log Files?
In the Hey Scripting guy ! article : How Can I Create an HTA For Displaying Log Files? , I made this example in PowerShell Using Windows Forms using the PSEventing CodePlex project PowerShell Eventing Snapin from Oisin the handle the ItemActivated event...
Posted
Feb 04 2008, 06:16 PM
by
The PowerShell Guy
Filed under:
PowerShell
,
Hey!
,
GUI
,
Event
Hey PowerShell guy !, The Games Are Afoot! Oh, and Some XML, Too
In TechNet Magazine you can find the Scripting Guy article The Games Are Afoot! Oh, and Some XML, Too I translated the scripts given for this article into PowerShell # Create $xml = New-Object xml $root = $xml .CreateElement( " ITChecklist...
Posted
Feb 01 2008, 03:13 PM
by
The PowerShell Guy
Filed under:
PowerShell
,
Hey!
,
XML
Hey PowerShell Guy!,How Can I Map Drives Based on Membership in an Active Directory Group and a CSV file.
In this translation of a Hey Scripting guy article to PowerShell based on : How Can I Map Drives Based on Membership in an Active Directory Group When the User Belongs to Multiple Groups? I tuned the example a bit as I did not like the configuration of...
Posted
Dec 14 2007, 07:32 PM
by
The PowerShell Guy
Filed under:
Active Directory
,
PowerShell
,
ctp
,
Hey!
Hey PowerShell Guy!, How Can I Retrieve Time Zone Information for a Computer?
As you can see in former posts also I picked up my Hey PowerShell guy series again, I did stop when the ScriptCenter started to provide PowerShell examples also see : Hey, PowerShell Guy ! How Can I .. Sorry forget about it I allready Know . But this...
Posted
Dec 14 2007, 04:29 PM
by
The PowerShell Guy
Filed under:
PowerShell
,
Hey!