Published by

Comments

# Windows 2008 Security - PowerShell UG - February

Pingback from  Windows 2008 Security  - PowerShell UG - February

Monday, February 02, 2009 3:55 PM by Windows 2008 Security - PowerShell UG - February

# Windows 2008 Security - PowerShell advanced function parameters

Pingback from  Windows 2008 Security  - PowerShell advanced function parameters

# Windows 2008 Security - Thursday ???????? Live Meeting

Pingback from  Windows 2008 Security  - Thursday ???????? Live Meeting

Monday, February 23, 2009 2:59 AM by Windows 2008 Security - Thursday ???????? Live Meeting

# Windows 2008 Security - LiveMeeting ???????? Last Call

Pingback from  Windows 2008 Security  - LiveMeeting ???????? Last Call

Wednesday, February 25, 2009 7:41 PM by Windows 2008 Security - LiveMeeting ???????? Last Call

# Posts about online meetings as of March 16, 2009

Pingback from  Posts about online meetings as of March 16, 2009

Monday, March 16, 2009 8:32 AM by Posts about online meetings as of March 16, 2009

# Windows 7 Troubleshooting Packs « On-Site Computer Services, Inc. in New Orleans Blog 504-469-6991

Pingback from  Windows 7 Troubleshooting Packs « On-Site Computer Services, Inc. in New Orleans Blog 504-469-6991

# Windows 7 Troubleshooting Packs « On-Site Computer Services, Inc. in New Orleans Blog 504-469-6991

Pingback from  Windows 7 Troubleshooting Packs « On-Site Computer Services, Inc. in New Orleans Blog 504-469-6991

# Windows 7 Troubleshooting Packs « On-Site Computer Services, Inc. in New Orleans Blog 504-469-6991

Pingback from  Windows 7 Troubleshooting Packs « On-Site Computer Services, Inc. in New Orleans Blog 504-469-6991

# re: foreach usage

Several time ago I wrote post about practical differences between foreach and foreach-object:

vpodans.spaces.live.com/.../cns!BB1419A2CFC1E008!273.entry

(post in Russian). The general performance difference is that foreach is vary fast when you work with simple data (large count of little data) and very slow when you work with large count of big data.

Thursday, June 25, 2009 5:31 AM by Vadims Podans

# re: PowerShell Editing

Richard,

File association is optional - this is just one of the features you select when running the setup. Deselect the feature and PowerGUI won't associate itself with the PS1 file extension.

With that said, we will have a look for better ways to set association and make it easier to remove it.

Dmitry

Thursday, July 16, 2009 8:58 AM by Dmitry Sotnikov

# re: PowerShell Editing

I don't remember seeing the option.  I'l look closer next time I install

Thursday, July 16, 2009 9:45 AM by RichardSiddaway

# re: PowerShell Editing

Also, I have just spent a few minutes experimenting with file associations and could not find any issues.

Both on XP and Vista, I could:

1. Right-click a .PS1 file,

2. Pick "Open With",

3. Click "Choose Program",

4. Pick Notepad or PowerShell ISE,

5. Select the checkbox to make it the default application.

This worked flawlessly - even changed file icons - and required no registry activity whatsoever.

Thursday, July 16, 2009 3:27 PM by Dmitry Sotnikov

# re: PowerShell Editing

Afraid I'm using Windows 7 and the choice to change the default was grayed out even with elevated privileges.

Other apps didn't have this issue

Friday, July 17, 2009 1:57 AM by RichardSiddaway

# re: System Up Time

ONELINER

(get-date)  - (Get-WmiObject Win32_OperatingSystem ).ConvertToDateTime((Get-WmiObject Win32_OperatingSystem).LastBootUpTime)

but pretty ugly, and two WMI requests.

Thursday, August 13, 2009 6:01 AM by pan_2@LJ

# re: System Up Time

with .net its better looking

(get-date)  - [Management.ManagementDateTimeConverter]::ToDateTime((Get-WmiObject Win32_OperatingSystem).LastBootUpTime)

Thursday, August 13, 2009 6:04 AM by pan_2@LJ

# re: System Up Time

The one liner is ugly and doesn't gain anything.  Probably slower due to two WMI calls

.NET version is better looking but looks don't win when scripting. As long as it work ugly is good

.NET vs WMI probably comes down to personal preference

Thursday, August 13, 2009 2:43 PM by RichardSiddaway

# Multiple test files

Sunday, November 08, 2009 5:03 AM by Richard Siddaway's Blog

# Watching the file system

We saw how to watch for WMI events msmvps.com/.../powershell

Monday, November 09, 2009 2:15 AM by Richard Siddaway's Blog

# Extension for temporary files

When I did the post on creating temporary files msmvps.com/.../2009

Wednesday, November 11, 2009 1:52 PM by Richard Siddaway's Blog

# Cleaning the Temp folder - Scheduling

When I posted about cleaning the temp folder msmvps.com/.../11

Thursday, November 12, 2009 1:44 PM by Richard Siddaway's Blog

# re: Reading Access records

This is an interesting series of postings I'd like to mention in my own blog.  But could you add Access to your "Filed under" so I can give folks a generic tag to search on?

Thanks, Tony Toews, Microsoft Access MVP

Thursday, November 26, 2009 7:10 PM by Tony

# re: Reading Access records

Thanks for the feedback.  I've added Access to the "Filed Under" tags as requested.

If there is anything you would like covered in this series let me know.

I will eventually publish all the functions as a PowerShell module for download

Friday, November 27, 2009 3:07 AM by RichardSiddaway

# re: Reading Access records

Thanks muchly. I've blogged this as well so others will ssee this. I was rather startled to see your first posting on PowerShell and Access.  I had no idea.

Saturday, November 28, 2009 12:56 AM by Tony

# re: Excel 2010 PowerShell I

It seems, that it still does not work with Hungarian locale :-((((

Sunday, December 20, 2009 10:12 AM by Tibor Soos