List of online antivirus checking services and misc security tools

March 1st, 2010 Zaur Bahramov No comments
Categories: Security, Windows Tags: , ,

Free e-book: Windows 7 troubleshooting tips

March 1st, 2010 Zaur Bahramov No comments

Mitch Tulloch, a Microsoft Most Valuable Professional and lead author of the just-published (and hot-selling) Windows 7 Resource Kit (Microsoft Press, 2010; ISBN: 9780735627000; 1760 pages), has created a short e-book called “What You Can Do Before You Call Tech Support.” Here are the opening paragraphs:

Your sound card has stopped working, your computer seems sluggish, the network is down, your hard drive is clicking, you can’t view a website, your monitor is hard to read, your new webcam isn’t working, your favorite program won’t run, and a funny burning smell is coming from your computer. What can you do on your own to try to troubleshoot the issue before you pick up the phone to call tech support?
If you’re running Windows 7, quite a lot. Microsoft has included a lot of self-support tools in Windows 7 that you can try using before you seek the help of others, and we’ll examine these in a moment….

You can download the e-book in XPS format here and in PDF format here.

Categories: Windows 7 Tags:

0×80070005: Access is denied when scheduling SUSHI

February 17th, 2010 Zaur Bahramov No comments

I’ve been trying to schedule a backup of our WSS site using SharePoint SUSHI and had two different problems:

1) After setting required parameters and clicking “Create Scheduled Backup” in the command prompt I was getting the following error:  ERROR: Invalid starttime value.
Well, actually the format of the date as it was created was wrong. Possibly just because of the regional Options… The server’s regional options where I run SharePoint site is Italian. So, to go around this I just copied the generated SCHTASK command and modified the time value:

    Original command was like this:

    D:\>SCHTASKS /create /sc DAILY /mo 1 /tn "Catapult SharePoint Autobackup" /tr "C:\SharePoint Utils\sushi.exe -autostart:Catapult_SharePoint_Autobackup" /s \\WSSSERVERNAME /st 01.00 /F /u DOMAIN\UserName
    ERROR: Invalid starttime value.

    I made it look like this in a Notepad:

    SCHTASKS /create /sc DAILY /mo 1 /tn "Catapult SharePoint Autobackup" /tr "C:\SharePoint Utils\sushi.exe -autostart:Catapult_SharePoint_Autobackup" /s \\WSSSERVERNAME /st 18:30 /F /u /RU DOMAIN\UserName /RP password

    After running this command in a command prompt window the tasks was successfully created. However, there I have encountered another problem to resolve as described in point 2.

    2) When I tried to Run the scheduled task the I got the following error:

"Catapult SharePoint Autobackup.job" (SharePoint) 2/4/2010 8:48:00 AM ** ERROR **
    Unable to start task.
    The specific error is:
   
0×80070005: Access is denied.
    Try using the Task page Browse button to locate the application.

Searching Internet led me to Microsoft’s KB article related to this error, however in my case the error was due to the ‘space’ character in the folder path: “D:\SharePoint Utils\sushi.exe“. Simply renaming the folder name and modifying the task with correct path resolved this problem.

Hope this information will help someone who has encountered the same problem.

Font too small when browsing pages with FireFox

February 12th, 2010 Zaur Bahramov No comments

Anyone ever had difficulties with small font size when browsing some web pages (this happens to me especially when I browse TechNet) with Mozilla FireFox and noticed that some parts of text are extremely small like in the bellow image?

image This can be easily fixed in FireFox as follows:

  1. Select Tools => Options
  2. Click on ‘Content’ tab => Advanced

    image

  3. Now change the minimum font size to a desired value.

    image

    Categories: Windows Tags: ,

    Windows 7 Explorer Old Style view

    February 12th, 2010 Zaur Bahramov No comments

    When you pass to Windows 7 from Windows XP you will notice that the Windows Explorer doesn’t explode by default the folder you’re currently browsing in the left pane.

    image

    To bring back this functionality you can do the following:

    1. Click ALT button on your keyboard to bring the menu.

      image

    2. Click Tools => Folder options…

      image

    3. Enable ‘Show all folders’ and ‘Automatically expand to current folder’.
    4. Enjoy!

    Active X error when opening SharePoint library in DataSheet view

    February 10th, 2010 Zaur Bahramov No comments

      Recently I have received several calls from our users saying that whenever the try to open a document library in DataSheet view the get the following error message:

      " The list cannot be displayed in Datasheet view for one or more of the following reasons: A datasheet component compatible with Windows SharePoint Services is not installed, your browser does not support ActiveX controls, or support for ActiveX controls is disabled. "

      clip_image001

      clip_image002

      All of our office computers have:

      - Windows XP SP3

      - Microsoft Office 2003 Professional SP3

      - Microsoft Office 2007 Compatibility Pack

      Poking around on the Web, I found several solutions for folks who were using Office 2003. Here’re the most common solutions I found for Office 2003:

    Read more…

    How to move virtual hard disk of XP Mode virtual machine

    February 5th, 2010 Zaur Bahramov No comments

    When you install XP Mode on Windows 7 by default all the virtual machine files are saved under “%USERPROFILE%\AppData\Local\Microsoft\Windows Virtual PC\Virtual Machines\”. The file that has *.vhd extension is a virtual hard disk file. Recently, I had to move the vhd file to another drive and I accomplished it this way:

    1) Run Windows XP Mode virtual machine and go to Tools –> Settings

    image

    2) Then select Close and in the right side click “Prompt for action”

    image

    3) Click OK and close virtual machine. This time when you close it the following window will appear:

    image

    4) Select Shut down and click OK. The virtual machine will shutdown.

    5) Now, click Start button, enter the following path:“%USERPROFILE%\AppData\Local\Microsoft\Windows Virtual PC\Virtual Machines\” without quotation marks and hit Enter.

    image

    6) This will open the folder where the virtual machine file reside. Move the vhd file to desired location by cutting and pasting.

    7) Once done moving the file, open the ‘vmc’ file with Notepad, which is a configuration file of the virtual machine. VMC file is an xml formatted file containing configuration of the virtual machine. Find the line that refers to vhd file location. For example “XP Mode.vhd” with the full path in front of it. Modify the path accordingly to point to a new location:

    image

    Now you may start the XP mode virtual machine.

    T-SQL: Find logical name and physical location of system databases

    November 3rd, 2009 Zaur Bahramov No comments

    The following T-SQL statements will print the logical name and physical location of system database files:

    USE master;
    GO
    SELECT name, physical_name AS CurrentLocation, state_desc
    FROM sys.master_files
    WHERE database_id = DB_ID(N'master')
    
    SELECT name, physical_name AS CurrentLocation, state_desc
    FROM sys.master_files
    WHERE database_id = DB_ID(N'tempdb')
    
    SELECT name, physical_name AS CurrentLocation, state_desc
    FROM sys.master_files
    WHERE database_id = DB_ID(N'model')
    
    SELECT name, physical_name AS CurrentLocation, state_desc
    FROM sys.master_files
    WHERE database_id = DB_ID(N'msdb')
    

    Result:

    image

    Categories: SQL Server, T-SQL Tags: , ,

    SQL Server 2008 Full-Text Search – Getting list of system stopwords

    November 1st, 2009 Zaur Bahramov No comments

    This will get the list of all languages supported by the SQL Server 2008 Full-Text Search:

    Code Snippet
    1. – to determine run_value corresponding to locale [LCID - LoCale IDentifier]
    2. SELECT lcid, name FROM sys.fulltext_languages

    Result:

    lcid        name
    ———– ———————————————–
    5124        Chinese (Macau SAR)
    4100        Chinese (Singapore)
    3098        Serbian (Cyrillic)
    3082        Spanish
    3076        Chinese (Hong Kong SAR, PRC)
    2074        Serbian (Latin)
    2070        Portuguese
    …………….
    1036        French
    1033        English
    1031        German
    1028        Traditional Chinese
    1027        Catalan
    1026        Bulgarian
    1025        Arabic
    76            76
    69            69
    25            25
    13            13
    1              1
    0              Neutral

    (53 row(s) affected)

    The following query will bring the list of system stopwords corresponding to the English locale:

    Code Snippet
    1. – list all stopwords corresponding to 1033 locale [English]
    2. SELECT * FROM sys.fulltext_system_stopwords
    3.     WHERE language_id = 1033

     

    When this query is run 154 records containing system stopwords will be returned.

    Microsoft Dynamics NAV 5.0 Developer and Installation Guides

    October 30th, 2009 Zaur Bahramov No comments

    Here’s a documentation available from Microsoft:

    http://www.microsoft.com/downloads/details.aspx?FamilyId=A3C9C3E3-11FC-446A-AC12-F6AD0749CB50&displaylang=en

    Also, you can download it here:

    Business Notification Installation Guide
    Describes how to install the Business Notification Client and the Business Notification Server.
    Microsoft Dynamics NAV 5.0 Security Hardening Guide
    Recommends best practices for managing security with a Microsoft Dynamics NAV installation.
    Application Designer’s Guide (w1w1adg.pdf)
    Provides information about the C/SIDE development environment for Microsoft Dynamics NAV.
    Installation & System Management: Application Server for Microsoft Dynamics NAV (w1w1atas.pdf)

    Read more…