Не всичко за мен

Верую: неверник - следствие от прекомерната работа с продукти на Microsoft. Нямам девиз, нямам любимо ядене, пиене, книга, ... Знам какво обичам днес, но това изобщо не важи за утре. Мисля, че горе-долу стана ясно.

Търсене в този блог

петък, 22 ноември 2013 г.

Desktop shortcuts disappear in Windows 7

Desktop shortcuts disappear in Windows 7

Прочетете това тук за да разберете защо изчезват преките ви пътища. След това можете да отстраните проблема за в бъдеще по следния начин:

To disable the "Broken Shortcut" task, follow these steps:

1. Click Start - start button, type regedit in the Search programs and files box, and then press ENTER.
2. UAC - If you are prompted for an administrator password, type the password. If you are prompted for confirmation, provide confirmation.
3. Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\ScheduledDiagnostics\
4. On the Edit menu, point to New, and then click DWORD Value.
Type IsBrokenShortcutsTSEnabled, and then press ENTER.
Right-click IsBrokenShortcutsTSEnabled, and then click Modify.
In the Value data box, type 0, and then click OK.
5. Exit Registry Editor.
6. Restart

За съжаление вече изчезналите преки пътища ги няма. Най вероятно се намират в някой Restore point.

четвъртък, 29 август 2013 г.

Receiving login prompt using integrated windows authentication

Receiving login prompt using integrated windows authentication
Solution:
Don't create mistakes on your server by changing everything. If you have windows prompt to logon when using Windows Authentication on 2008 R2, just go to Providers and move UP NTLM for each your application. When Negotiate is first one in the list, Windows Authentication can stop to work property for specific application on 2008 R2 and you can be prompted to enter username and password than never work. That sometime happens when you made an update of your application. Just be sure than NTLM is first on the list and you will never see this problem again.
Thanks to Slo

четвъртък, 30 май 2013 г.

BIOS Application error (501) HP laptop

HP 6730b "BIOS Application error (501)".

Solution:

You deleted the efi-partition (HP_Tools). You can get past this message by disabling HP Quicklook 2 in your BIOS.
1. Open up your BIOS (by pressing F10 while your machine is booting up)
2. Go to System Configuration / Device Configurations
3. Look for an option called "HP Quicklook" or "HP Quicklook 2"
4. Set it to "Disabled"
6. Save the changes (hit F10)
7. Restart your machine.
....

събота, 4 май 2013 г.

uTorrennt and Windows7 64bits

След преинсталация на win 7, uTorrent 3.0 упорито дава грешка access denied при опит да се свали торент файл. Оказа се че приложението трябва да се стартира с административни права. Да се отметне Run as Administrator в Compitability tab на диалоговата кутия Properties на uTorrent. Нямам спомен при първоначалната инсталация да се е налагало да правя тази настройка.

сряда, 13 март 2013 г.

There is a problem sending the command to the program

Когато отваряме файл на excel 2007 с двойно кликване, излиза съобщение "there is a problem sending the command to the program".
Решението: тук
Или:
Microsoft Excel 2007
Click the Microsoft Office Button, and then click Excel Options.
Click Advanced, and clear the Ignore other applications that use Dynamic Data Exchange (DDE) check box in the General area.
Click OK.

понеделник, 18 февруари 2013 г.

Мрежовата картата не си взема IP address от DHCP съвъра.

Проблем:
Мрежовата картата не си взема IP address от DHCP съвъра. (OS -> Windows XP)
При release and renew -> The operation failed: no adapter is in the state permissible for this operation.
Enable, Disable на мрежовия интерфейс не работи


Решението:
1. Reset winsock entry: netsh winsock reset catalog;
2. Reset TCPIP steck: netsh int ip reset reset.log;
3. Reboot computer.

петък, 1 февруари 2013 г.

Cannot shift objects off sheet OR Excel cannot paste the data


Когато се опитате да вмъкнете ред в excel 2007 или картинка и получите някое от горните съобщения, идете на ExcelOptions/Advanced, от там намерете секцията "Display options for this workbook", в характеристиката "For objects, show:" изберете "All"
Ако пак не става вижте какво казват микромеките по въпроса тук

вторник, 8 януари 2013 г.

Файловете от MS Office се отварят бавно / Very slow open of exsel/word files

MS Office използва DDE, за да отваря файловете си при двойно кликване върху тях. Идеята е да не се отваря всеки път нова инстанция на excel, word и т.н, а да се изпозва вече отворената инстанция.
Сега по някаква причина отварянето на файл с двойно кликване отнема около минута. Съветите в нета са да се забрани DDE. Да обаче това е тъпо, защото губим цялата функционалност, която ни е предоставена от DDE.
За това по-добре да открием истинския проблем. Използваме netstat -a по време на мъката при отварянето. Виждаме, че има SYNC SENT към машина, която вече не съществъва в мрежата или е спряна. Проверяваме в registry за записи, в които е цитирана тази машина, и ги изтриваме.
И всичко е ток и жици. Ооооо чудо!!!

In English:

Use netstat -a during opening of the file. See if you have SYNC SENT to some ip address that is not exist in the network. Delete registry records that are using this ip address.
Don't disable DDE it is stupid

петък, 4 януари 2013 г.

MySql error 1067

How to fix MySql error 1067

When installing MySQL, if you install it in a non-standard directory, then you’ll need to specify where your defaults file’s path is before you can run MySQL or install the MySQL service, otherwise you’ll get Error 1067.

First let’s open up the command prompt. Navigate to your MySQL install folder and find wherever mysqld.exe is. Then run this:

mysqld –remove MySql

That will uninstall the MySQL service.
Now reinstall the service with the defaults-file parameter:

mysqld –install "service name" –-defaults-file="full path of my.ini file"

For example:

mysqld –install MySql -–defaults-file=c:\mysql\my.ini

Enjoy your error-free MySQL install.