Posts Tagged “Windows”

I have none the individual that runs Windows 7 Forums for a fairly long time. I wouldn’t consider him a really knowledgeable web site administrator as he noes nothing about server. Just recently, one of the regulars (regulars being visited once this month) brot up the fact that there host was Linux based.

Matt understood the issue with this and decided to purchase a Windows based package. Well for the first week the site had some weird error because PHP was not setup correctly. Secondly the already slow web site is now twice as slow.

Another site the owner runs is called Windows 7 Meg. You can usally get a good laugh at some theorys.

But who am I to talk. This is the first time since July I posted :P

Comments No Comments »

A battle that might never end between Mac and PC users. A battle that is won but no one on the PC side will admit it.

The battle between Mac and PC have been going on for years and years. This history behind Apple and Microsoft has always been to “out do” the other. Microsoft I hate to brake it to you… but you lost.

I recommended my second Mac out to a friend of myna who was getting a laptop to do her writing on. She got it in November and has never had a issue with it. My laptop is a little older but still has some good hardware in it. I run XP Pro hooked to my domain at home. Over the time she has had her nice running Mac, I have formatted my Windows based laptop 10 times. That’s right, 10 times. And not only just the formatting but I don’t think any peace of software has worked correctly on it. Even Miro couldn’t play video back with out horrid lag and being very choppy.

Every since the last format, it’s been acting really weird with the file sync to my home server but today was the day it finally died.

It’s funny because I sit here writing this and reading the slides during the XP Pro install.
“Music and entertainment just got better” This is a great line. I have always had issues playing 340kbps music files.
“Now it’s easier to get help — and to help others!” Yeah it’s easy if grandma can forward the ports through her router.
“The computer will be faster and more reliable” Lets just all take a minute and laugh.
“Get support for the latest hardware and software” It goes on about Direct X 9 after that. Does that mean Miro should have been able to play my shows?
“Surfing the Internet: safe, fast and flexible” If you use Firefox :P
“Explore your creative side with photos and videos” but they can’t be to big or else explore will crash.
“Windows Movie Maker makes it easy and fun to capture, and edit video” Yeah right. If your trying to make a video slid show of picture, Windows will crash due to buffering issues.

So to sum up. Windows sucks. I’ll let you know how much better it is now that it’s formatted.

Edit: Ok I haven’t even posted this yet and I already have my first issue. USB stick with all my drivers on it won’t come up in My Computer… O look 5th times the charm!

Comments No Comments »

As most of you know I am fluent in both Windows and Linux. Yesterday in the #mybb IRC channel, tension was tight between us Linux people and the Windows fan boy Matt (owner of msubuntu who will be sued when the site is launched) A good friend of myn, DrPoodle had had it with Matt. So with the help of MiNT we started to produce a list of all the reasons why Linux was better then windows. For any of you Windows fan boys… eat this…

1) Linux is free.
2) Linux is faster (another IRC user, tmhai, was astounded earlier today at how his laptop booted in under 30 seconds with Ubuntu, compared to the 30 minutes it took Windows to boot on it).
3) Linux is Open Source (which means bugs and security holes are found and fixed quicker).
4) With Linux, you own your Operating System. With Microsoft Windows, you don’t actually “own” the Operating System, you simply have a license that says you can use it. Every installation of Windows is owned by Microsoft.
5) Linux has better support. This is debatable, but there are a lot of community forums out there, and usually errors in Linux are much more readable than Windows errors, which leads to quicker solutions.
6) Linux has package managers. Most distros come with some form of package manager, a utility that installs safe and secure programs, and then updates them automatically.
7) Linux has daily updates. Most distros release daily updates of core files, as well as updates for programs.
8) Linux has releases every 6 months. Most distros release their next version every 6 months without fail. So instead of waiting an uncertain amount of time for the next Windows release, you know exactly when the next version of your OS will be out.
.. To read all the reasons, click Here.

If any of you Windows people have anything that could possibly have a case against Linux. I ask you to sign up on my forums and post your reasoning.

Comments No Comments »

Yesterday I upgraded my Desktop and Laptop PC’s to Windows XP Pro. I wanted to have them join my domain here at home so I wouldn’t have to type my username and password in all the time.

First one I did was my Desktop. I ran a fresh install after the upgrade failed very badly. (Video card wouldn’t recognize) So with a fresh install of XP Pro I joined it to the Domain which is served by my Ubuntu Linux server. Joining it was no problem. This is how I did it

Start -> Right Click on My Computer -> Properties

Then under “Computer Name” tab, click on “Change…”

Where you see “Member Of” click the “Domain:” button then type in your domain. In my case it was “miller”.

Now you need to restart your computer. Now here where I had another problem. All Domain Controllers have a logon.bat script witch is run every time any user logs on to a computer within the network. Now in my home, we have never had Windows XP Pro so this is the steps I had to go through to get it working. On the server there is a Samba server that basically talk on the windows protocol. I followed this tutorial on how to setup the server.

Ok now I’ll get to the good part. In the /etc/samba/smb.conf file there is few lines that read this…

# Default logon

logon drive = Z:

logon script = logon.bat

logon path = \\server1\profile\$U

So that worked fine when I was connecting manually to the shares but now that I want permissions and such working I need this logon.bat to work. After going through a few Google Search pages I figured out how to get this to work. All I had to do was add the line “path = /home/netlogon” So when I was done though’s few lines, it looked like this…

# Default logon

logon drive = Z:

logon script = logon.bat

path = /home/netlogon

logon path = \\server1\profile\$U

Ok now I created a logon.bat in the /home/netlogon folder. My logon.bat mounts three shared drives I have created. (The How To Forge link will show you how to make other shared folders.)

net use Y: \\server1\shared
net use X: \\server1\programs
net use W: \\server1\pictures

So now your asking your self “Why didn’t he use Z:?” Will I didn’t because I specified Z: as the mounting point for the users home directory in the smb.conf. So now I can logon and off my computer with ease. My dad and sister can logon my computer and have access to all there files and none of myna.

Next I’m going to talk about upgrading my laptop. Now I ran the upgrade from XP Home to Pro. Every thing went well till I started using certain things. First thing I notices was Windows Updates would not run. It said there was 34 to install, but when I would run them they would all fail. The second thing I noticed was Internet Explore 6 was installed. So again I went to my good friend Google and started searching. A few people have had this problem and the easiest way to fix it was to make a simple batch file. I will go through this step by step.

  1. Open up Notepad (Start -> All Programs -> Accessories -> Notepad
  2. Copy the following lines into the file
  3. regsvr32 /s wuapi.dll
    regsvr32 /s wuaueng1.dll
    regsvr32 /s wuaueng.dll
    regsvr32 /s wucltui.dll
    regsvr32 /s wups2.dll
    regsvr32 /s wups.dll
    regsvr32 /s wuweb.dll
  4. Now save the file as update.bat onto your desktop
  5. Close the file then open it from the desktop.

Or Download the Batch file from Here

windows-update-fix.bat

A command prompt window should pop-up then disappear. Now if I run Windows Updates all install will work. Basically XP Pro Upgrade took out all the patches that XP Home had. But XP Pro didn’t know what was already there. So by running “regsvr32″ we tolled windows that, Hey these files are here. Windows Updates is now fully functional.

Well hope this helps you in your indevers of Windows and Linux. If you have any questions or comments please post them on the Forums.

Comments No Comments »

I have finally taken the Vista plunge! And I have to say it isn’t as bad as I thought it was going to be. Me and another guy at my co-op placement decided we need to educate our selves for the growing Vista world. Working at a IT place saying “Vista sucks’ didn’t get us very far with customers that liked it. :P Anyway’s, I ran the upgrade script and only had 2 applications that didn’t work to well in Vista.

  1. AVG… It didn’t like the upgrade… Had to un-install and re-install it… no bigy
  2. Norton Ghost… I new this one was going to shit badly :P

Still having a few issues with little things like Miro. Miro will not start at all, even after upgrading Miro. Second thing would be, the Documents, Pictures and Music buttons in the start menu. They just don’t work.

All in all it’s a good OS. The problems I just mentioned is enough to drive me to just do a fresh install. I’m hoping to do this next week.

Next Topic I want to discus is Visual Basic. I downloaded and installed Visual Basic 2005 Express the other day. I have to say that VB is one kick as language. Only took me a day to get the concepts although I’m still going through tutorials and stuff. I’ll post some of my applications later on.

Anyway’s that’s all for now see yall later.

Comments No Comments »