OK - went back to your code to pull a direct example:
 Code:
$DontReboot  = Split(ReadProfileString($CfgFile, 'CONFIG', 'NoReboot'), ',')	; Computers to Be Skipped
$Userstoskip = Split(ReadProfileString($CfgFile, 'CONFIG', 'SkipUsers'), ',')	; Users to be Skipped - (user not logged in) Must remain in list!!!
$EmailServer = ReadProfileString($CfgFile, 'CONFIG', 'MailServer') 		; HostName of Email Server
$EmailSufix  = ReadProfileString($CfgFile, 'CONFIG', 'MailDomain')		; Sufix of Email Address Company.com

$RS_Logs = ReadProfileString($CfgFile, 'CONFIG', 'LogPath')			; Don't use the trailing \ because it won't work right
$IT_Email = ReadProfileString($CfgFile, 'CONFIG', 'MailTo')			; Email Address of System Admin or Group

The config file should look like this:
 Code:
[CONFIG]
NoReboot=host1,host2,host3
SkipUsers=Fred,Wilma,Betty,Barney
MailServer=mailhost.mydomain.com
MailDomain=mydomain.com
LogPath=C:\Logs\rsinfo.log
MailTo:MrSlate

Glenn
_________________________
Actually I am a Rocket Scientist! \:D