Posts

அச்சமுண்டு

அச்சமுண்டு!!! அச்சமுண்டு!!! அவளின் கண் பேசும் மொழியின் அழகு கன்னித் தமிழை மட்டுபடுத்திவிடுமோ என... --நா வா

புருவம்

ஆதவன் அந்தம் அடையும் அழகை வென்றது, உந்தன் புருவத்தின் இடையே இட்ட பொட்டின் அழகு... --நா வா

சந்திராயன் 2

வென்மதியை  நோ க்கி விரைந்து தன்மதியை இழந்தானே விக்ரமன்... கடமைகள் பல காத்திருக்கு, கனவுகள் பல எதிர்பாத்திருக்கு, கண்களை திற எந்திரனே !!!        -நா வா

How to send emails in outlook using power shell

Powershell is one of the power tool in windows through which we can perform alot of automation through COMObjects. In this example, we are using COMObject for Outlook App installed in the system to perform automation. Note : Outlook App should be installed in the system <#Read Me: Developed By: Name:Vaneeswaran N www.vaneeswaran.com ##Function Name : Send_Email ##Descrption : Used to Send Mail ##Argument : Subject and Body of the Mail #> function Send_Email( $To , $Subject , $Body ) { echo "Sending Email Started.... " try { $olFolderInbox = 6 $Outlook = New-Object -ComObject Outlook.Application $Mail = $Outlook .CreateItem(0) $Mail .To = $To $Mail .Subject = $Subject $Mail .Body = $Body if ( $Body .length -gt 10) #Check to mail body is more than 10 char { ...

How to exclude WhatsApp Audio and call recordings from music player

Sometimes it will be annoying when your music player start's playing the WhatsApp Audio or recorded audio's. In exclude such contents from your music player you can refer the below. This method not only applicable for Audio but also for all media files like video. Step 1: create a file ".nomedia" in the folder where you don't want audio / video /media files to be shown from music / video players. incase if you can't able to create the file ".nomedia" in the folder you can copy the file from the folder  WhatsApp > media > audio > sent Explanation : generally android OS skips the folders which has .nomedia file while indexing. these index are used by audio / video player's.

How to see Instagram DP of a someone's profile

Please refer the below article to see someone's Instagram DP. Step 1: copy the Profile Link of the person you want to see Step 2: open a browser and paste the link over there Step 3: if you didn't login please login with your insta account Step 4: once insta profile is loaded click on the dp Step 5: select open image in new tab Step 6: now you got the image which you wanted to see &#128540;&#128540;&#128540;&#128540;

how to implement scheduler in C

The below code is a sample for scheduler implementation in C GitHub Link : https://github.com/vaneeswaran/my_c_codes/tree/master/Shedule