Posts

Workstation Service not present !!!

if you are trying to join a pc to domain and u see that the domain name and workgroup are disabled... that's because the worksation service is not available or not started. if not started try to start it. if not available check the following solution: Before doing anything, try running the network setup wizard. It might activate or install any missing services or files. Still not working? Try importing this registry key . Importing the above registry key should add the service back to the list of services. If its still not working it might be becasyse 1 or more of the files needed are missing or corrupt. Search your computer for "wkssvc.dll" to see if it exists. Try, extracting it from the cd using SFC. Path should be c:\windows\system32. If it still doesn't work try running SFC /scannow

Best Online Cloud Apps builder for Android Review

Image
I am searching for the best apps builder online, currently i found For now it's seems ok i tested with one easy app. It inlcudes many type of pages and categories  and direct simulator. wish to be more effective and better designs. Another one AppyPie which build for you any application type it has very good designs and easier friendly interface for your application and developement screens i am waiting the applications to be built and i will review the results. I will keep updating this post and i welcome you're opinions and your search result to be posted

how to force windows to automatically logon to a specific username

To force windows to automatically logon you can perform one of the following ways: 1. From control userpasswords2 command- Windows XP: 1. Click Start, click Run, and type control userpasswords2. 2. Uncheck the "Users must enter a username and password to use this computer" check box. Click Apply. 3. Enter the user name and password you wish to automatically log on with, and then click OK. Click OK again and you're all done. 2. From NETPLWIZ command- Windows Vista 1. Click the Start button, type netplwiz in the search box, and then press enter. 2. Uncheck Users should enter a username and password to use this computer, and then press OK 3. Type the username and password for the user you want to automatically logon to Windows Vista when it boots up and press OK 3. Modifying Winlogon registry values: 1. Start> Run> and type “regedit” then hit enter 2. Locate the following registry key: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon 3. In that ...

Enhance your blog with Apture and Zemanta tools

Image
Image via CrunchBase Adding rich multimedia content to your blog posts is a powerful way to attract more readers. Recently we have found two products known as Apture and Zemanta Balloons in the market which lets you fill pop-ups with all kinds of multimedia content in your blog. Let’s have a look at them. Apture: Apture will allow you to integrate third party content like text, images, videos, music, maps and references from more than 50 sources such as YouTube, Flickr, Google etc and keep your visitors on your blog, instead of sending them away. It is free and easy to install on your blog. With Apture, you can embed high resolution videos from YouTube or upload your own content like Images, PowerPoint presentations, PDF or Word documents, or Excel Spreadsheets to your blog. Zemanta: Zemanta is a semantic web company that’s used by bloggers to add related links to their posts all over the web. Recently it has announced the launch of their “Balloons” service which will allow any blogger...

touching article about IPAD: 8 Things That Suck About the iPad

Image
i have found this article, it's interestin.. and i think that these 8 things are sucks...!!1 A lot of people at Gizmodo are psyched about the iPad . Not me! My god, am I underwhelmed by it. It has some absolutely backbreaking failures that will make buying one the last thing I would want to do. Updated Big, Ugly Bezel Have you seen the bezel on this thing?! It's huge ! I know you don't want to accidentally input a command when your thumb is holding it, but come on. No Multitasking This is a backbreaker. If this is supposed to be a replacement for netbooks, how can it possibly not have multitasking? Are you saying I can't listen to Pandora while writing a document? I can't have my Twitter app open at the same time as my browser? I can't have AIM open at the same time as my email? Are you kidding me? This alone guarantees that I will not buy this product. No Cameras No front facing camera is one thing. But no back facing camera either? Why the hell ...

productivity toolbox: 37+ tools for taking abd getting things done

Image
source: smallfuel I found this article very interesting... Last week we talked about how taking action is the first priority of a small business (or just about anything). This week it’s time to go beyond talk and start getting things done. With that in mind, I’ve compiled a list of the best resources and tools available for taking action, getting things done, and generally being productive. Project and Task Management Tools Actionthis.com ActionThis is a web-based service for managing projects and tasks and making sure they get finished. They use your everyday tools to help you get stuff done and go home early. Really nice interface and an elegantly-simple “Plan it, Do it, Improve” methodology. Actionize.com Actionize is a nearly complete system of small business tools. They have a project manager, task manager, calendar, and contact manager. Even more than others, Actionize can help with CRM and business communications in general. Basecamp.com Basecamp is the project...

php ftp class

Image
usage of the class - get a file require( "class.ftp.php" ); //include library $f =new PHP_FTP ( 'ftp.somesite.com' , 'username' , 'password' ); //specify connect info $f -> get ( 'html/test.txt' , 'c:/php/ftp/blah.txt' ); //yes, tested on Windows $f -> kill (); //optional destroy class method ?> Usage Example - Send a file require( "class.ftp.php" ); $f =new PHP_FTP ( 'ftp.somesite.com' , 'username' , 'password' , 21 ); //optional port as 4th arg $f -> send ( 'c:/php/ftp/blah.txt' , 'html/test.txt' ); //yes, tested on Windows $f -> kill (); ?> Usage Example - how to test for completion if(! $f -> send ( 'c:/php/ftp/blah.txt' , 'html/test.txt' )){ echo "File sent successfully!" ; }else{ echo "Error sending file." ; } ?> you can download it here