Archive

Archive for the ‘Windows’ Category

Удалить вложенные папки .SVN

January 26th, 2011 No comments

Создайте новый .bat файл в корневом каталоге. Назовите remove_svn_sub_folders.bat,
вставьте следующий текст.

for /f “tokens=* delims=” %%i in (‘dir /s /b /a:d *svn’) do (
rd /s /q “%%i”
)

Затем выполните. Это удалит все вложенные папки с .SVN.

Categories: PHP, SVN, Windows Tags: ,

How to do a MX lookup on windows

May 19th, 2010 No comments

Here’s a little trick you can use to lookup an MX record for a domain. MX records are the Mail Exchanger records in DNS – they specify what IP address email should be directed to for the domain. So open up the command prompt (Start – Run – cmd)

nslookup
> set type=mx
> example.com

Categories: Online Tools, Windows Tags: , , ,

Remove Nero Scout from Nero 7

March 24th, 2010 No comments
  1. Click on Start and select Run.

    Remove Nero Scout from Nero

    Remove Nero Scout from Nero

  2. Copy the code/line below and paste it to the Run box and hit OK.
    regsvr32 /u “%COMMONPROGRAMFILES%\Ahead\Lib\MediaLibraryNSE.dll”
Categories: Windows Tags:

PHP mail под Windows. Отправка почты из PHP скриптов

February 3rd, 2010 No comments

В этой статье я хочу рассказать об отправке почты из php скриптов под Windows.

С точки зрения php программиста отправка почты выполняется с помощью стандартной функции mail().

И вот тут у многих начинающих разработчиков возникает проблема. Скрипт, прекрасно работающий на сервере хостера, выдает ошибки на локальном компьютере.

Read more…

Categories: PHP, Windows Tags: , , , ,