How to fix “is not accessible. You might not have permission to use this network resource. Access is denied.” Network error with accessing XP windows shares

Trying to access a Windows XP host computer over a LAN (local area network) and get into it’s shared folders.

This little turd of an error can be really irritating. It happens when trying to access a shared folder, or any shares, on a remote, but LAN networked, Windows XP computer. After running the Network Setup Wizard on the host computer, and enabling file and printer sharing, it just won’t go away. In Windows XP Professional, you can go into the explorer view settings, and disable Simple File Sharing, which didn’t fix it either.

The fix ended up being a simple registry edit, suggested by Microsoft: http://support.microsoft.com/kb/913628

Here is the process:

To resolve this issue, set the value of the restrictanonymous registry entry to 0. To do this, follow these steps:

  1. Click Start, click Run, type regedit, and then click OK.
  2. Locate and then double-click the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
  3. On the right side, double-click restrictanonymous.
  4. Make sure that the value in the Value data box is set to 0, and then click OK.
  5. Close Registry Editor.
  6. Restart the computer.

This worked like a charm more than once for me.

Posted under Microsoft, Network, WordPress

Problem: unprivileged scripts cannot invoke the Cut, Copy, and Paste commands in the Mozilla Firefox rich text editor

I had a problem pasting text into a rich text editor using Firefox 3.0 on Windows Vista. I found a way to allow it to work.

This may help, however I’m not sure about the security implications involved in changing this setting:

Open a new tab, and go the URL “about:config”
Find the setting “noscript.allowClipboard” and set it to “true”

This worked for me, hopefully it helps for you.

( I posted this originally at http://forums.mozillazine.org/viewtopic.php?f=38&t=624240&p=5356385#p5356385 )

Posted under Browsers

This post was written by Content Curator on December 31, 2008

Tags: , , , , , , , , , , , , , , , ,

How to delete EISA partition

Assuming you are using Windows XP or Vista, you can use the DISKPART utility to delete these OEM partitions from DELL and other hard drives.

If you have data anywhere on the drive that you will be deleting the EISA partition from, backup that data now.

  1. Connect the drive to the computer. If it is an IDE drive then do this with a USB-to-IDE device, or connect the drive directly to the IDE cable. If ti is a SATA drive then do this with a USB-to-SATA device, or connect the drive direclty to the SATA controller on the motherboard. In essence, the drive must be connected to the PC and it must be “seen” by the operating system.
  2. XP: Start a command prompt in XP by going START > RUN > type CMD <ENTER>
    Vista: Start a command prompt in Vista by going START > type CMD <ENTER> in the “Start Search” box.
  3. In the command prompt type DISKPART <ENTER>. This starts up the DISKPART utility.
  4. Type LIST DISK <ENTER>. This shows the all the disks connected to the computer. Decide which one is the one you are wanting to delete the EISA / OEM partition from, and make note of which number it is.
  5. Type SELECT DISK n <ENTER> (where n = the number of the disk you noted in step 4)
  6. Type LIST PART <ENTER>. This shows the all the partitions contained in the drive you are working with. Decide which one is the one you are wanting to delete, and make note of which number it is.
  7. Type SELECT PART n <ENTER> (where n = the number of the partition you noted in step 6)
  8. Type DELETE PART OVERRIDE <ENTER>. This deletes the partition you selected.
  9. You are done with deleting the partition. If you want to, you may now EXTEND another adjacent partition into that free space you just created.

Enjoy!

Posted under Hardware, Microsoft

This post was written by Content Curator on December 10, 2008

Tags: , , , , , , , , , , , , , , , , , , ,

Fedora 9 connect: Network is unreachable error

Ran across this installing Red Hat’s free Linux distribution Fedora Core 9 code named Suplhur. Installed totally vanilla install with the GUI anaconda front end. The box sees the NIC, and can ping within the local subnet of the LAN network, but can’t ping out. BTW, it holds a static IP on the network interface card (NIC). Gets the error:

connect: Network is unreachable error

We need to set a default route. Here’s how:

Looked in /etc/sysconfig/network-scripts for the file route-eth0 but it wasn’t there.

Using vi (you can use whichever text editor you prefer) I created that file route-eth0, and put in this one line:

defult via 192.168.0.1

(note: 192.168.0.1 is the LAN IP address of my router. Your router IP address may differ. So you should put in whatever the IP addres of your router is, instead. Most Netgear routers and Qwest DSL boradband modems use 192.168.0.1 and Linksys uses 192.168.1.1 and Belkin uses 192.168.2.1 just to name some common ones.)

Then a simple task of restarting the network and testing:

# service network restart
# ping yahoo.com

Success!

Also, I found that the ethernet adapters weren’t starting automatically. Using the GUI taskbar/ Start Menu, I went into System Administration, then into Services, and enabled the “network” service. Then change runlevel to 3. Ping works so eth0 is up, and that happened at the runlevel change. Change to runlevel 5, test, and… yeppers, it works.

Posted under Freeware, Linux, Network

OTRS login

By default, to login to a fresh OTRS install, the username is root@localhost and the password is root

Posted under Freeware, Linux

This post was written by Content Curator on December 4, 2007

Tags: , , , , , ,

Set Windows clock to UTC time

Save the following lines as utc.reg, and then run it to import this registry tweak. It allows you to set the hardware clock in your PC’s BIOS to UTC time. This is handy for boot dual-booting Mac, or Linux, when those operating systems are set to read the BIOS clock as UTC time, instead of Windows’ preferred Local Time (ie. PST, PDT, MST, MDT, CST, CDT, EST, EDT, or the standard “GMT-” and “GMT+“)

Here is the code to save as utc.reg:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
“RealTimeIsUniversal”=dword:00000001

Posted under Apple, Linux, Microsoft

This post was written by Content Curator on October 30, 2007

Tags: , , , , , , , , , , , , , , , , ,

Update Microsoft Windows Defender manually

Microsoft makes manual download of update files easily accessible at this link:

http://go.microsoft.com/fwlink/?linkid=70631

This will download a file called Mpas-fe.exe
Try to save the file in a location that you can get to easily with a command prompt. (ie. C:\ )
Then, open a command prompt and run the program using the -q switch. It looks like this:

Mpas-fe.exe -q

The program will run quickly, and won’t give you any kind of confirmation that it has run or finished.

Open the Microsoft Windows Defender window to see what date your definition files have. This is how you can be sure that the update was successful.

IMPORTANT: The above info applies ONLY to 32-bit Operating Systems. For those of you using 64-bit platforms, see the full scoop here:

http://support.microsoft.com/kb/923159 

Posted under Freeware, Microsoft

Firefox tip: Moving tabs between Firefox windows

So, you have two or more Firefox main windows open, and you need to close Firefox, but you’ll lose Firefox’s memory of all tabs in windows that are not the last one closed. Bummer.

This process assumes that you have Firefox set to “show my tabs from last time”.
Well, there are two ways to fox this. One is easy and requires no plugins. Here is the process:

  1. Pick one firefox window to be the recipient of all tabs. Maximize that window, or at least make it so you can see the tab bar, and it is near the top of your screen.
  2. By clicking on its icon on the Windows taskbar, open the other window that has tabs you want to save.
  3. Make sure that this second Firefox window is not maximized, and is small enough so that you can see the original Firefox window’s tab bar.
  4. Now, drag tabs from the second, smaller Firefox window, and drop them above on the original, bigger Firefox’s tab bar. NOTE: Read the next step too.
  5. If the original Firefox’s tab bar is full, or if it fills up as you drop tabs on it, then you can continue dropping tabs on the right-arrow button at the extreme right of the Firefox tab bar.
  6. Repeat step 4 for all tabs that you want to keep.
  7. Close the second, smaller Firefox window.
  8. Repeat steps 2 through 7 for any other Firefox windows that you want to retrieve tabs from.
  9. Make sure that only your one main Firefox window is open. Now close it. It will remember all those tabs you put into it now.

The second way to make this happen in the future is to download the Session Manager plugin for Firefox.

Posted under Browsers, Freeware

This post was written by Content Curator on October 17, 2007

Tags: , , , , , , , , , , , , , , , , , ,

How to Update Firefox on Fedora Core Linux

Using the yum command line usility:

yum -y –enablerepo=development update firefox

(there are two dashes preceding “enablerepo”)

When I used this line I got some transaction check failures thet looked something like:

file /usr/share/pkgconfig/gnome-doc-utils.pc from install of gnome-doc-utils-stylesheets-0.12.0-1.fc8 conflicts with file from package gnome-doc-utils-0.8.0-2.fc6

To fix this, I did the following:

yum -y –enablerepo=development update gnome-doc-utils

This updated the necessary packages, then I re-ran:

yum -y –enablerepo=development update firefox

Success!

Posted under Browsers, Freeware, Linux

This post was written by Content Curator on October 9, 2007

Tags: , , , , , , , , , , , , , , , , ,

Quickbooks online Virtual Terminal URL

http://quickbooks.com/virtualterminalplus

Posted under QuickBooks, Uncategorized

This post was written by Content Curator on September 17, 2007

Tags: , , , ,