PowerShell v2 Set Process Priority on Slow Scheduled Tasks

While troubleshooting some slow processes on a server I had my server guy take a look. After some wild goose chasing he discovered that Windows Server...
Read More..

USB device is not detected or is malfunctioning

It’s not easy to troubleshoot a USB device, since they are usually plug-n-play devices. If your OS is Windows XP, it’s very easy to install and begin...
Read More..

Do you use Internet glue

Do you use Internet glue? Do you know what it is? Basically its a web service that links two web services together; hence the name Internet glue. For...
Read More..

Simple is better Making your web forms easy to use pays off

Posted by Javier Bargas-Avila and Mirjam Seckler, User Experience Research at Google Imagine yourself filling out a long and cumbersome form on a website...
Read More..

PowerShell v3 Type Accelerators Cheat and a lot of Hot Wind

This is straight off of Hals Google+.
[PSObject].Assembly.GetType(System.Management.Automation.TypeAccelerators)::Get.GetEnumerator() | sort key | select key 
Now, to get a little more into the arcane side of all things PowerShelly, heres a little sidenote (and history): this was shifted from being a public class in v2 to an internal class in v3 as indicated by James ONeill: System.Management.Automation.TypeAccelerators broken in V3 CTP2.

To get around to seeing whats buried in there with v3 you have to resort to a little trickery (calling the assembly itself...which references all exported objects...then drill down into the DLR indirectly). This explains why you are unable to see a "clean" list of TypeAccelerators in v3. For example, v3 shows the following with my hopped up command:
# Type accelarators
[PSObject].Assembly.GetType(System.Management.Automation.TypeAccelerators)::Get.GetEnumerator() |
sort key|
select key|
% {$_.key.ToString().Trim()}
and it returns:
adsi
adsisearcher
Alias
AllowEmptyCollection
AllowEmptyString
AllowNull
array
bigint
bool
byte
char
ciminstance
CmdletBinding
cultureinfo
datetime
decimal
double
float
guid
hashtable
int
int16
int32
int64
ipaddress
long
mailaddress
NullString
OutputType
Parameter
powershell
pscredential
pscustomobject
PSDefaultValue
pslistmodifier
psmoduleinfo
psobject
psprimitivedictionary
PSTypeNameAttribute
ref
regex
runspace
runspacefactory
sbyte
scriptblock
securestring
single
string
SupportsWildcards
switch
timespan
type
uint16
uint32
uint64
uri
ValidateCount
ValidateLength
ValidateNotNull
ValidateNotNullOrEmpty

Adobe Flash CS3 Professional Portable

Adobe Flash CS3 is used to create interactive content for websites as well as enrich games whether they are destined for PC, mobile phones or portable...
Read More..

PowerShell v3 Function Change ProcessPriority

Not sure why I didnt put this one out when I wrote it. I come up with way too many functions...function Change-ProcessPriority{     ...
Read More..

Welcome to Computer Class week 1

This site serves as our jumping off point for all of our lessons and projects. Instead of a text book we have web pages with instructions, examples, links...
Read More..

After Effects Basic Tutorial In Hindi By Media Masters

After Effects Basic Tutorial In Hindi By Media Masters.SHARE BY GKComputer Knowle...
Read More..

How to find the IP address of the sender in Yahoo! mail

When you receive an email, you receive more than just the message. The email comes with headers that carry important information that can tell where the...
Read More..

PowerShell v3 in a Year Day 4 about Arithmetic Operators

Much of the arithmetic operator information is straightforward, as you would assume it to be in algebra or math class:+ : adds the value on the right...
Read More..

3DS Max Cloth Modifier Tutorials By Wendy Huther

3DS Max Cloth Modifier. Easy To Follow Step By Step Tutorials. Enjoy!SHARE BY GKComputer Knowle...
Read More..

Nikon School D SLR Tutorials In Hindi By Nikon India

1 Tutorial. 12 Sessions. Now in Hindi to understand your Nikon D-SLR better.SHARE BY GKComputer Knowle...
Read More..

MAKE YOUR MENUS LOAD FASTER

Go to Start then RunType Regedit then click OkFind "HKEY_CURRENT_USERControl PanelDesktop"Select "MenuShowDelay"Right click and select "ModifyReduce the...
Read More..

PowerShell v3 Function Set UACState

A current project has me building common provisioning tasks into a scripted solution. One of the tasks is disabling UAC. There are plenty of posts on...