GetSmile 1.952 Retail
GetSmile 1.952 Retail
GetSmile is simply the easiest way to express your emotions and thoughts in the Internet. Whether you are writing an email, participating in forums or chatting on MSN Messenger, GetSmile is going to help you express yourself and bring more fun into your life. Now you can send, capture, organize and share smileys with one easy-to-use and absolutely safe tool. Finally, the smiley software you’ve been waiting for is here. GetSmile lets you insert the most beautiful smilies in your messages. Just one mouse click stands between you and them. You can insert stunning smilies in MSN Messenger without creating shortcuts; you insert smilies directly from GetSmile. Your friends don't need to download anything to see smilies. GetSmile works fine with most email programs and Web-based mail. You can insert funny smilies in message boards, blogs and even in MS Word. GetSmile comes with over 1600 funny smilies, including 700 smilies created especially for MSN Messenger. They are well categorized for easy browsing. You can add new smilies or other cool animations from the Internet or your hard drive quickly and easily. The program is highly optimized to preview hundreds of animated smilies simultaneously. GetSmile gives you everything you need to organize your smilies. You can organize smilies exactly how you want them. GetSmile also helps you create signatures for emails. By combining your text and smilies you can create wonderful signatures...
Labels: Software
Akon - Sorry, Blame it on me (Music Video) + Lyrics
Artist: Akon
Song: Sorry, Blame It On Me
Lyrics:
As life goes on I'm starting to learn more and more about responsibility
I realize everything I do is affecting the people around me
So I want to take this time out and apologize for things I have done
And things that have not occurred yet
And the things they don't want to take responsibility for
I'm sorry for the times I left you home
I was on the road and you were alone
I'm sorry for the times that I had to go
I'm sorry for the fact that I did not know
That you were sitting home just wishing we
Could go back to when it was just you and me
I'm sorry for the times I would neglect
I'm sorry for the times I disrespect
I'm sorry for the wrong things that I've done
I'm sorry I'm not always there for my son
I'm sorry for the fact that I am not aware
That you can't sleep at night when I am not there
Because I am in the streets like everyday
Sorry for the things that I did not say
Like how you are the best thing in my world
And how I am so proud to call you my girl
[Bridge]
I understand that there are some problems
And I am not too blind to know
All the pain you kept inside you
Even though you might not show
If I can apologize for being wrong
Then it's just a shame on me
I'll be the reason for your pain and you can put the blame on me
[Chorus]
You can put the blame on me [4x]
Said you can put the blame on me [3x]
You can put the blame on me
Sorry for the things that he put you through
And all the times you didn't know what to do
Sorry that you had to go and sell those packs
Just trying to stay busy till you heard from Dad
And you would rather be home with all your kids
As one big family with love and bliss
And even though Pops treated us like kings
He got a second wife and you didn't agree
He got up and left you there all alone
I'm sorry that you had to do it on your own
I'm sorry that I went and added to your grief
I'm sorry that your son was once a thief
I'm sorry that I grew up way too fast
I wish I would've listened and not be so bad
I'm sorry your life turned out this way
I'm sorry the FEDS came and took me away
[Bridge]
I'm sorry that it took so long to see
They were dead wrong trying to put it on me
I'm sorry that it took so long to speak
But I was on tour with Gwen Stefani
I'm sorry for the hand that she was dealt
For the embarrassment that she felt
Just a little young girl trying to have fun
Her daddy should never let her out that young
I'm sorry for Club Zen getting shut down
I hope they manage better next time around
How was I to know she was underage
Enter 21 you know the club they say
Why doesn't anybody wanna take blame
For rising back out disgracing my name
I'm just a singer trying to entertain
Because I love my fans I'll take that blame
Even though the blame's on you [3x]Publish Post
I'll take that blame from you
And you can put that blame on me [2x]
You can put that blame on me
And you can put that blame on me
Labels: Video
Beautiful recitation of Surah Qamar by Mishary Rashid Al-Afsay with english translation:
Beautiful recitation of Surah Qamar by Mishary Rashid Al-Afsay with english translation:
Labels: Video
Local Admin password change
So, you have been tasked with changing the local Administrator password on all PCs in you company.
In addition, management wants to...
- Do this on a periodic basis, creating a new set of passwords each time.
- Completely automate.
- Enable the helpdesk to look up current as well as historical password data.
- Have groups of PCs issued different passwords based on PC naming convention.
Well, using SMS Installer (you must compile the IPF file using SMS installer program), VBScript and some head-scratching, I have developed this process...
The SMS installer script:
1. Executes a SQL DTS script to exports from the SMS database PC two letter prefixes (AZ for Arizona, RI for Rhode Island... you get the idea) to PC_Prefixes.txt. If you have a limited number of prefixes, you could manually maintain this file.
2. Uses "PW_Generator.vbs" script to create new password file "Reset.ini" (500 different passwords, one per PC prefix, enough for any site...)
3. Combine files created in steps one and two into "Reset_History_New.txt" using the SMS installer script.
4. Maintain the password history logfile "History_x.txt" (12 versions for last 12 password changed.) These are linked in an Excel file "Helpdesk_Password_History.xls" (you will have to edit the data range properties to prompt you for a new file location, then save the file to save the new locations, then open the file and deselect the prompt for file location option.
5. When required,
a. use a PC or server to run the SMS installer script that generates and configures the password files.
b. use SMS to run an advertisement which executes "PWchange_local_master.vbs" (no parameter required)
The "PWchange_local_master.vbs" script performs the following:
- Determines the first two characters of the PC NetBIOS name
- Reads the PC/password Reset_History_New.txt and assigns a new local admin password based on the first two letters of the PC name.
- Annotates the admin user comments to indicate the date the password was changed.
Notes
· No changes need to be made when site are added or removed.
· The password generator creates 500 complex passwords.
· If you use a DTS An SQL DTS package exports all known pc name prefixes to PC_Prefixes.txt.
· Syntax for the SMS Installer script:
If no parameters are passed to the script, you must maintain the PCprefix.txt file manually.
Add DTS to command line to run a SQL DTS package to export PC prefixes. Edit the DTSRun.bat file to point to your SMS database server and DTS package you create.
The SQL query to create a list of PC two letter prefixes to export is:
SELECT DISTINCT TOP 100 PERCENT UPPER(LEFT(Netbios_Name0, 2)) AS [PC Code]
FROM dbo.System_DISC
WHERE (Operating_System_Name_and0 LIKE 'Microsoft%') AND (NOT (Operating_System_Name_and0 LIKE '%Server%'))
GROUP BY UPPER(LEFT(Netbios_Name0, 2))
HAVING (UPPER(LEFT(Netbios_Name0, 2)) >= 'A%')
ORDER BY UPPER(LEFT(Netbios_Name0, 2))
It is not as complicated as it sounds. Go slow and test. Then get some coffee and enjoy.
Labels: Tutorial
WinRar: Limit Volume Sizes to Fit on CD or DVD
WinRar allows you to define volume sizes for compressing large files and/or folders. This makes it easy to split the compressed files to preset volume sizes for burning onto CD or DVD. You can even create custom volume sizes to meet any other size requirements that you might run into.
1. Click the Start button and select All Programs.
2. Select the WinRar directory and click WinRar to launch the application.
3. Click Options and select Settings.
4. Select the Compression tab.
5. From the volume size list section, click the Define volume sizes button.
6. Under Predefined sizes, use the checkboxes to select the desired volume sizes. Choices are 3.5" floppy, 100 MB Zip disk, 650 MB CD, 700 MB CD, 4482 MB DVD+R, 4488 MB DVD-R and 8152 MB DVD+R DL. Make sure to only check the ones you will use, uncheck the rest of them to keep your list nice and small. To create custom volume sizes, go to the User defined sizes section. Input a descriptive label and then the size (in bytes) in the corresponding textboxes. You can add up to 4 custom volume sizes.
7. Click OK.
8. Click OK to close the Settings window.
Labels: Tutorial
XP: Small, Free Way to Use and Mount Images (ISO files) Without Burning Them
Microsoft has an unsupported virtual CD-ROM program. Why buy alcohol or Daemon Tools?
Alcohol and Daemon Tools are excellent software packages that allow users to mount ISO files as virtual CD-ROMs. Yes, there is a way to use that ISO without burning it to a disk.
Although I love these tools, Microsoft has a free, 60kb program that does the same thing! Of course, it is not supported... and it's not as friendly as the software listed above; however, it works and it's free.
Here's the download link:
winxpvirtualcdcontrolpanel
Here's the readme:
Quote: |
Readme for Virtual CD-ROM Control Panel v2.0.1.1 THIS TOOL IS UNSUPPORTED BY MICROSOFT PRODUCT SUPPORT SERVICES System Requirements =================== - Windows XP Home or Windows XP Professional Installation instructions ========================= 1. Copy VCdRom.sys to your %systemroot%\system32\drivers folder. 2. Execute VCdControlTool.exe 3. Click "Driver control" 4. If the "Install Driver" button is available, click it. Navigate to the %systemroot%\system32\drivers folder, select VCdRom.sys, and click Open. 5. Click "Start" 6. Click OK 7. Click "Add Drive" to add a drive to the drive list. Ensure that the drive added is not a local drive. If it is, continue to click "Add Drive" until an unused drive letter is available. 8. Select an unused drive letter from the drive list and click "Mount". 9. Navigate to the image file, select it, and click "OK". UNC naming conventions should not be used, however mapped network drives should be OK. You may now use the drive letter as if it were a local CD-ROM device. When you are finished you may unmount, stop, and remove the driver from memory using the driver control. |
Labels: Tutorial