Easy and Secure File transfer from PC to Android via Wifi

I own a HTC Evo 4G and a Samsung Galaxy Tablet; and constantly find in need of copying documents, media files to these android devices. I have found 2 ways of achieving this ES File Explorer – a featured File/Application Manager http://www.estrongs.com/en/products/file-explorer.html Allows to connect to a shared folder on the PC and Copy-Paste to …

Importance of SetLocale in VB Script

I recently ran into an issue where a user complained that their network drives were not mapped when they login after troubleshooting ; found the root cause was the login scrips fails to write koran time/date char’s to the log file and exit’s. If the locale is not explicitly set to en-us (1033) it uses …

Powershell Dir recursive with Depth

#################################################### ####     Siva Mulpuru                        ######## ####    <scipt_file.ps1> input.txt            ######## ####    input.txt – list of fileshares/dir    ######## #################################################### cls New-Item -ItemType directory “c:\tmp” 2>> $null $folder_depth = 6 #Dynamic LogFile name $log = “c:\tmp\$(get-date -Format yyymmdd-HHmmss).log” #File Extensions to look for $virus_extensions = @(“*.scr,*.exe”) function DOWork([string]$path) { if …

Powershell Profiles

PowerShell uses profiles to help customize the shell environment. There are a few files which customize the profile: %windir%\system32\WindowsPowerShell\v1.0\profile.ps1 This profile is loaded for all users. %windir%\system32\WindowsPowerShell\v1.0\ Microsoft.PowerShell_profile.ps1 This profile is loaded for all users, and only for the default instance of PowerShell. %UserProfile%\My Documents\WindowsPowerShell\profile.ps1 This profile is loaded per-user, and affects all versions of …

Powershell Admin Scripts

To get the process owner. (Get-WmiObject win32_process | where{$_.Name -eq ‘explorer.exe’}).getowner() | Select  domain, user To find the systems that are alive $result = Get-WmiObject -query “select * from win32_pingstatus where address=’google.com’ ” if ($result.StatusCode -eq 0) {echo “google.com is alive”} else {echo “google.com is not pingable”}

Vista/Win 7 Backdoor

Boot with any live cd (Ubuntu/WinPE etc) to get access to windows file system rename c:\windows\system32\magnify.exe to magnify.exe.bak make a copy of c:\windows\system32\cmd.exe and rename that to magnify.exe reboot the machine, boot normally to windows by removing the live cd. once you see the “press ctrl alt del to login”, press “winkey + U”, this …

WordPress Appliance - Powered by TurnKey Linux