Powered By Blogger

четверг, 24 октября 2013 г.

Перемонтирование Read-only системы

Для того чтобы заново перемонтировать систему находящуюся в режиме read-only (после сбоя), можно воспользоваться следующей командой:

mount -o remount rw /

Создание программного RAID-массива в Centos

Для создания массива воспользуемся утилитой madm:

Например:

mdadm --create --verbose /dev/md0 --level=0 --raid-devices=3 /dev/sdb /dev/sdc /dev/sdd

В данном случае создаем Stripe массив из 3х дисков.

Создадим файловую систему для нового массива:

mkfs.ext4 /dev/md0

Автоматически создадим файл конфигурации:

mdadm --detail --scan --verbose > /etc/mdadm.conf

Создадим директорию к которую в дальнейшем примонтируем вновьсозданный массив:

mkdir /raid

Смонтируем массив в директорию:

mount /dev/md0 /raid

Убедимся что все прошло успешно:

fdisk -l

воскресенье, 19 мая 2013 г.

Удаление сервиса из загрузки в Linux (single user mode)

В случае если у вас возникают проблемы с загрузкой Linux из за зависания\невозможности запуска какого либо сервиса, то необходимо выполнить следующие действия:

1. При загрузке в GRUB выбрать нужный пункт и нажать кнопку "a" (если Grub не виден при запуске (timeoute = 0), то необходимо нажимать кнопки "вверх"\"вниз" перед загрузкой системы).
2. Затем, в строке запуска через "пробел" набрать "single"
3. После загрузки смотрим список процессов которые вызывают проблемы 'chkconfig --list', либо, если примерно известно имя процесса "chkconfig --list | grep [имя процесса]"
4. Смотрим, есть ли он в списке, и удаляем его оттуда командой "chkconfig --del [имя процесса]"
5. Набираем exit и убеждаемся что теперь система запускается нормально.

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

Проверка и настройка службы времени в Windows Server 2003

Проверку можно выполнить следующей командой:

w32tm /monitor

Настройку можно выполнить по этой статье:

http://www.dark-sarmat.com/sys-admin/windows-server/2010/07/20/nastrojka-servera-vremeni-v-windows-2003/

Правда, мне изменение ключей реестра лично мне не помогло, ситуацию спасла только принудительная синхронизация с ближайшим контроллером домена командой из статьи выше:

net time \\[IP или имя ближайшего контроллера домена] /set /y

среда, 24 апреля 2013 г.

Узнать версию схемы Active Directory

Для того чтобы узнать версию схемы Active Directory можно выполнить следующий запрос на любом контроллере домена:

dsquery * cn=schema,cn=configuration,dc=domainname,dc=local -scope base -attr objectVersion

dc=domainname и dc=local соответственно меняем на свое значение.



Возможные версии:

13 — Windows 2000 Server
30 — Windows Server 2003 RTM, Windows 2003 With Service Pack 1, Windows 2003 With Service Pack 2
31 — Windows Server 2003 R2
44 — Windows Server 2008 RTM
47 — Windows Server 2008 R2
56 — Windows Server 2012

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

четверг, 4 апреля 2013 г.

Ключи запуска Outlook

/a

Creates an item with the specified file as an attachment.
Usage:
Outlook /a "C:\My Documents\labels.doc"
If no item type is specified, IPM.Note form is assumed. This switch cannot be used with message classes that aren't based on Outlook.

/altvba otmfilename

Opens the VBA program specified in otmfilename, rather than %appdata%\Microsoft\Outlook\VbaProject.OTM. Use this switch when you need to run macros not in your VBAProject file.

/autorun macroname

Opens Outlook and immediately runs the macro specified in macroname.

/c messageclass

Creates a new item of the specified message class, works for any valid MAPI form.
Examples:
/c ipm.activity creates a Journal entry
/c ipm.appointment creates an appointment
/c ipm.contact creates a contact
/c ipm.note creates an e-mail message
/c ipm.stickynote creates a note
/c ipm.task creates a task

/checkclient

Prompts for the default manager of e-mail, news, and contacts.

/cleanclientrules

Starts Outlook and deletes client-based rules. Used by non-Exchange account users.

/cleandmrecords

Deletes the logging records saved when a manager or a delegate declines a meeting. Used by Exchange Server accounts.

/cleanfinders

Removes Search Folders from the Microsoft Exchange server store.

/cleanfreebusy

Clears and regenerates free/busy information. This switch can only be used when you are able to connect to your Microsoft Exchange server.

/cleanprofile

Removes invalid profile keys and recreates default registry keys where applicable.

/cleanpst

Launches Outlook with a clean Personal Folders file (.pst)

/cleanreminders

Clears and regenerates reminders.

/cleanrules

Starts Outlook and deletes client- and server-based rules.

/cleanschedplus

Deletes all Schedule+ data (free/busy, permissions, and .cal file) from the server and enables the free/busy information from the Outlook Calendar to be used and viewed by all Schedule+ 1.0 users.

/cleanserverrules

Starts Outlook and deletes server-based rules. Used only with Exchange server accounts.

/cleansniff

Overrides the programmatic lockout that determines which of your computers (when running Outlook simultaneously) processes meeting items. The lockout process helps prevent duplicate reminder messages. This switch clears the lockout on the computer it is used, enabling Outlook to process meeting items.

/cleansubscriptions

Deletes the subscription messages and properties for subscription features. Used with SharePoint alerts.

/cleanviews

Restores default views. Use with care as all custom views you created are lost.

/designer

Starts Outlook without figuring out if Outlook should be the default client in the first run.

/embedding

Opens the specified message file (.msg) as an OLE embedding. Also used without command-line parameters for standard OLE co-create.

/explorer

Opens the new window in "explorer" mode (link bar on).

/f msgfilename

Opens the specified message file (.msg) or Microsoft Office saved search (.oss).

/firstrun

Starts Outlook as if it were run for the first time.

/folder

Opens a new window in "folder" mode (Navigation Pane off).

/hol holfilename

Opens the specified .hol file.

/ical icsfilename

Opens the specified .ics file.

/importprf prffilename

Launches Outlook and opens/imports the defined MAPI profile (*.prf). If Outlook is already open, queues the profile to be imported on the next clean launch.

/l olkfilename

Opens the specified .olk file.

/launchtraininghelp assetid

Opens a Help window with the Help topic specified in assetid.

/m emailname

Provides a way for the user to add an e-mail name to the item. Use either the full address or let alias resolve. Only works in conjunction with the /c command-line parameter.
Usage:
Outlook.exe /c ipm.note /m test@poremsky.com
Outlook.exe /c ipm.note /m dianep

/nocustomize

Starts Outlook without loading outcmd.dat (customized toolbars). With older versions of Outlook the *.fav file doesn't load.

/noextensions

Starts Outlook with extensions turned off, but listed in the Add-In Manager.

/nopollmail

Starts Outlook without checking mail at startup.

/nopreview

Starts Outlook with the Reading Pane off and removes the option from the View menu.

/p msgfilename

Prints the specified message (.msg). Does not work with HTML.

/profile profilename

Loads the specified profile. If your profile name contains a space, enclose the profile name in quotation marks.

/profiles

Opens the Choose Profile dialog box regardless of the Options setting on the Tools menu.

/recycle

Starts Outlook using an existing Outlook window, if one exists. Can be used in combination with /explorer or /folder. The Outlook shortcut in the Quick Launch bar uses the /recycle switch.

/resetfoldernames

Resets default folder names (such as Inbox or Sent Items) to default names in the current Office user interface language.
For example, if you first connect to your mailbox Outlook using a Russian user interface, the Russian default folder names cannot be renamed. To change the default folder names to another language such as Japanese or English, you can use this switch to reset the default folder names after changing the user interface language or installing a different language version of Outlook.

/resetfolders

Restores missing folders for the default delivery location.

/resetnavpane

Clears and regenerates the Navigation Pane for the current profile. Removes all Shortcuts and Favorite Folders. Has the same effect as deleting profilename.xml in your user directory.

/rpcdiag

Opens Outlook and displays the remote procedure call (RPC) connection status dialog.

/s filename

Loads the specified shortcuts file (.fav). Use to load *.fav files created in older versions of Outlook.

/safe

Starts Outlook without extensions, Reading Pane, or toolbar customization.

/safe:1

Starts Outlook with the Reading Pane off. New to Outlook 2003.

/safe:2

Starts Outlook without checking mail at startup. New to Outlook 2003.

/safe:3

Starts Outlook with extensions turned off, but listed in the Add-In Manager. Outlook 2003 only.

/safe:4

Starts Outlook without loading Outcmd.dat (customized toolbars) and *.fav file. Outlook 2003 only.

/select foldername

Starts Outlook and opens the specified folder in a new window.
Usage:
"C:\Program Files\Microsoft Office\Office11\Outlook.exe" /select outlook:calendar
outlook /select "outlook:Inbox\Old Messages"

/sniff

Starts Outlook and forces a detection of new meeting requests in the Inbox, and then adds them to the calendar.

/t oftfilename

Opens the specified .oft file.

/v vcffilename

Opens the specified .vcf file.

/vcal vcsfilename

Opens the specified .vcs file.

/x xnkfilename

Opens the specified .xnk file


http://www.outlook-tips.net/how-to/using-outlook-command-lines/

среда, 20 марта 2013 г.

Изменение приоритета HUB в пределах сайта в Exchange

Для изменения списка используемых mailbox серверов HUB-ов для отправки сообщений можно воспользоваться командлетом:

Set-MailboxServer –Identity MailServer.domain.com –SubmissionServerOverrideList Hub_one.domain.com, Hub_two.domain.com

Таки образом мы жестко прописываем список HUB которые будут обрабатывать Submission queue данного mailbox сервера.
По дефолту данная настройка не заполнена, и для отправки выбирает любой из доступных HUB находящихся в этом сайте AD.

http://www.blankmanblog.com/general-news/tips-tricks/restricting-hub-transport-server-selection-using-submissionserveroverridelist/

вторник, 26 февраля 2013 г.

Список участников всех списков рассылки Exchange


Немного модифицируем скрипт использованный для подсчета количества участников:


$groups = Get-DistributionGroup
foreach ($DG in $groups)
{
 
$groupmembers = Get-DistributionGroupMember -Identity $DG

$Name =  Get-DistributionGroupMember -Identity $DG | ft Name
$GroupName = Get-DistributionGroup -Identity $DG | ft DisplayName

$GroupName
$Name
}

воскресенье, 24 февраля 2013 г.

Коды доставки в Exchange



Первая цифра

2.X.X Успех
4.Х.Х Частый временный сбой
5.X.X Постоянный сбой

Вторая и третья цифры

X.1.0 Состояние другого адреса
X.1.1 Неверный адрес почтового ящика назначения
X.1.2 Неверный системный адрес назначения
X.1.3 Неверный синтаксис адреса почтового ящика назначения
X.1.4 Адрес почтового ящика назначения неоднозначен
X.1.4 Адрес почтового ящика назначения действителен
X.1.6 Почтовый ящик перемещен
X.1.7 Неверный синтаксис адреса почтового ящика отправителя
X.1.8 Неверный системный адрес отправителя

X.2.0 Другое или неопределенное состояние почтового ящика
X.2.1 Почтовый ящик отключен и не принимает сообщения
X.2.2 Почтовый ящик переполнен
X.2.3 Длина сообщения превышает установленный предел
X.2.4 Проблема расширения списка рассылки

X.3.0 Другое или неопределенное состояние почтовой системы
X.3.1 Почтовая система переполнена
X.3.2 Система не принимает сетевые сообщения
X.3.3 Система не в состоянии выполнять выбранные функции
X.3.4 Сообщение слишком велико для системы

X.4.0 Другое или неопределенное состояние сети или системы маршрутизации
X.4.1 Узел не отвечает
X.4.2 Плохое соединение
X.4.3 Сбой сервера маршрутизации
X.4.4 Невозможно выполнить маршрутизацию
X.4.5 Перегрузка сети
X.4.6 Обнаружена цикличность маршрута
X.4.7 Время, выделенное для доставки, истекло

X.5.0 Другое или неопределенное состояние протокола
X.5.1 Недопустимая команда
X.5.2 Синтаксическая ошибка
X.5.3 Слишком много получателей
X.5.4 Недопустимые аргументы команды
X.5.5 Неправильная версия протокола

X.6.0 Другая или неопределенная ошибка носителя
X.6.1 Носитель не поддерживается
X.6.2 Требуемое преобразование запрещено
X.6.3 Требуемое преобразование не поддерживается
X.6.4 Преобразование выполнено с потерей данных
X.6.5 Сбой преобразования

X.2.0 Другое или неопределенное состояние безопасности
X.7.1 Доставка не авторизована, сообщение не принято
X.7.2 Запрещено расширение списка рассылки
X.7.3 Требуемое преобразование безопасности невозможно
X.7.4 Функции безопасности не поддерживаются
X.7.5 Криптографический сбой
X.7.6 Криптографический алгоритм не поддерживается
X.7.7 Нарушение целостности сообщения

среда, 23 января 2013 г.

Массовое создание контактов в Exchange 2010


 Для массового создания mail contact из CSV файла в котором указаны Name и ExternalEmailAddress можно использовать следующий командлет:

Import-CSV "C:\TestFile.csv" | Foreach{New-MailContact -Name $_.Name -ExternalEmailAddress $_.ExternalEmailAddress -OrganizationalUnit "ваш OU"}

http://social.technet.microsoft.com/Forums/da/exchangesvrgeneral/thread/6d53a914-ab03-4907-a85a-76e1791df279