вторник, 17 декабря 2013 г.

Telnet - SMTP Commands (sending mail using telnet)

Крайне полезно бывает, для понимания что же творится с почтой:

http://www.yuki-onna.co.uk/email/smtp.html

telnet mail.domain.ext 25
Trying ???.???.???.???...
Connected to mail.domain.ext.
Escape character is '^]'.
220 mail.domain.ext ESMTP Sendmail ?version-number?; ?date+time+gmtoffset?

HELO local.domain.name 

250 mail.domain.ext Hello local.domain.name [loc.al.i.p], pleased to meet you
MAIL FROM: mail@domain.ext
250 2.1.0 mail@domain.ext... Sender ok
RCPT TO: mail@otherdomain.ext
250 2.1.0 mail@otherdomain.ext... Recipient ok


DATA
354 Enter mail, end with <CRLF>.<CRLF>
This is a test SMTP e-mail from console.
.
250-Transmission in progress. Stay tuned
250-Transmission in progress. Stay tuned
250 Message accepted for delivery
QUIT
221 See ya in cyberspace

вторник, 10 сентября 2013 г.

Если Windows не хочет активироваться...

...то вполне возможно, что майкрософту показалось, что у Вас нелегальная версия! И при этом система переходит в так называемый 'non-genue notification period' и не позволяет прямо так сразу активировать систему! Подождите пару дней.

вторник, 14 мая 2013 г.

Как избавиться от "Metro" и прочих радостей в Windows 8?

Ну да, популярная тема... :)

В интернете много полезных программ, позволяющих справиться с новой идеей Microsoft. Мне понравилось решение, которое называется Classic Shell.

На всякий случай прямая ссылка на сайт производителя.

среда, 8 мая 2013 г.

Xerox изобрёл свой WEB-доступ... или почему я не вижу свой принтер???

Оказывается, компания Xerox не знает, что такое HTTP и называет это своим, совершенно другим словом. Она зовёт это "Centerware IS"!

Так что при настройке сети лучше этот "протокол" не отключать, т.к. после этого жить с этим аппаратом становится затруднительно.

Вот тут ещё несколько советов от производителя:
Xerox CentreWare Internet Services: What if it Won’t Display?

воскресенье, 7 апреля 2013 г.

Не определялись некоторые флешки на компьютере...

Совершенно загадочная история... На компьютере Windows 7 x64 вдруг перестали определяться некоторые флешки и USB-диски. Преимущественно Transcend.

В списке устройств появлялась запись 'USB Mass Storage Device' в списке 'Other devices' с диагностикой 'System cannot find the file specified'.

Решение нашёл тут: в системе потерялся файл C:\Windows\Inf\usbstor.inf.

Скопировал файл с другого компьютера - эффект тот же самый, вроде как ничего не поменялось. Но, когда после этого тыкнул на этот неопределённый USB Mass Storage Device мышкой и попросил проапдейтить драйвер из интернета - всё заработало! Теперь, правда, операцию восстановления драйвера приходится проводить каждый раз, когда флешка или USB-диск не определяются, но их становится всё меньше (те, которые хоть раз определились, уже после этого подключаются нормально).

пятница, 5 апреля 2013 г.

Если есть проблемы с установкой и ругань на WMI (Windows Management Instrumentation)

Вот, набрёл на полезную штуку при попытке разобраться, почему не устанавливается SQL Express 2008 (прямая ссылка)




Hello,

While WMI may appear to be running on your server, it is possible that the service is corrupt.  This can be determined easily enough by opening up the "Dependencies" tab for WMI under Services; an error such as "WMI: Initialization Failure " may be thrown.

A solution to this would be to reinstall the WMI service.  This can be done by creating a batch file with the following contents and then executing:

@echo on
cd /d c:\temp
if not exist %windir%\system32\wbem goto TryInstall
cd /d %windir%\system32\wbem
net stop winmgmt
winmgmt /kill
if exist Rep_bak rd Rep_bak /s /q
rename Repository Rep_bak
for %%i in (*.dll) do RegSvr32 -s %%i
for %%i in (*.exe) do call :FixSrv %%i
for %%i in (*.mof,*.mfl) do Mofcomp %%i
net start winmgmt
goto End

:FixSrv
if /I (%1) == (wbemcntl.exe) goto SkipSrv
if /I (%1) == (wbemtest.exe) goto SkipSrv
if /I (%1) == (mofcomp.exe) goto SkipSrv
%1 /RegServer

:SkipSrv
goto End

:TryInstall
if not exist wmicore.exe goto End
wmicore /s
net start winmgmt
:End

суббота, 30 марта 2013 г.

Справочник компьютерщика в интернете

Ресурс с большим количеством справочной информации, включая всевозможные языки командной строки, ASCII-таблицу, etc. Прямая ссылка: http://ss64.com/

Command line reference: Web, Database and OS scripting.
  Password generator bash commands  
  CSS reference OS X commands  
  Forum  

вторник, 26 марта 2013 г.

Где Windows хранит расположение иконок десктопа?

Оригинал статьи находится здесь.

The settings for desktop icon placement in Windows XP (or Vista) are located in the the
HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop 
registry key.
This registry key contains a number of values, the most relevant if which are the ItemPos<screenresolution> values, the Sort value and the FFlags value.
The sort value controls the sort order of the icons (by name, by type, by size etc.), the FFlags value controls the arrangement of the icons (align to grid, auto align etc.)
Finally there may be any number of ItemPos values (appended with different screen resolutions eg. ItemPos800x600), which control the user defined positions of the icons for different screen resolutions.
For more details about the content of HKCU\Software\Microsoft\Windows\Shell values:
ShellBagsView v1.05
ShellBagsView
Regarding the Icon view used for any folder of one's choosing, I believe the position of icons would be stored in:
HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\[x]\Shell\{yyyyyyy-yy...}\ItemPos
with 'x' representing one of your many folder specific settings.

Добавлю, также, что в Microsoft Windows NT Resource Kit tools есть расширение shell для сохранения и восстановления иконок десктопа, см. здесь.

понедельник, 4 февраля 2013 г.

Что делать, если не хочет работать CRM для нового пользователя


Giving a laptop to a new user when CRM 4.0 Offline Mode is installed on it

When someome leaves a company, or their laptop is replaced and they get a new laptop, their old laptop goes somewhere. If that somewhere is to a new user and that laptop had an installation of CRM 4.0 configured in Offline Mode installed on it then you will get the following error message when you attempt to run the Configuration Wizard to set up CRM within Outlook for the new user: Microsoft Dynamics CRM for Outlook with Offline Access has already been configured for a user on this computer. Only one user can be configured per computer for Microsoft Dynamics CRM for Outlook with Offline Access. 
This problem is down to the existance of the CRM SQL Server 2005 Express Edition database on that computer. Uninstalling CRM and reinstalling it does not fix the issue, and it would be fixed by removing SQL Server 2005 Express Edition as well – but that is overkill.All you need to do is to remove the MSCRM_MSDE database. And the easiest way to do this is to use the osqlcommand line tool.  
  1. Start > Run > type cmd and press Enter (or type cmd in the search box in Vista/Windows 7).
  2. In the Command Prompt type osql -E -S pcname\CRM and press Enter.
  3. At the number prompt type drop database mscrm_msde and press Enter.
  4. At the next number prompt type go and press Enter.
  5. Finally type quit followed by Enter to exit from osql.
You can now run the CRM 4.0 Configuration Wizard for this new user and choose Offline Mode if you wish – a new database will be created.