This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# init | |
Add-Type -AssemblyName System.Speech | |
$synth = New-Object System.Speech.Synthesis.SpeechSynthesizer | |
$synth.SetOutputToDefaultAudioDevice() | |
$exercises = New-Object System.Collections.Specialized.OrderedDictionary | |
# seconds of rest between exercises | |
$rest = 10 | |
# duration in seconds of each exercise |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
IF ( | |
Verkaufsbeleg_Pos.Artikelnummer LIKE '1_e' OR Verkaufsbeleg_Pos.Artikelnummer LIKE '1_e-%', | |
IF ( | |
Verkaufsbeleg_Kopf.KassePrefix IN ('R','E'), | |
Verkaufsbeleg_Pos.Menge, | |
IF ( | |
Verkaufsbeleg_Kopf.KassePrefix IN ('G','A'), | |
-Verkaufsbeleg_Pos.Menge, | |
0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright (C) 2012-2014, Manuel Meitinger | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 2 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Page Language="C#" %> | |
<%@ Import Namespace="Microsoft.SharePoint" %> | |
<%@ Import Namespace="System.Collections.Generic" %> | |
<%@ Assembly Name="System.DirectoryServices.AccountManagement, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" %> | |
<%@ Import Namespace="System.DirectoryServices.AccountManagement" %> | |
<%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" | |
Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<html xmlns="http://www.w3.org/1999/xhtml"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright (C) 2012, Manuel Meitinger | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 2 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright (C) 2012-2013, Manuel Meitinger | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 2 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright (C) 2013-2015, Manuel Meitinger | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 2 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Drawing.Design; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
using System.Windows.Forms; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param([Parameter(Mandatory=$true)]$profileIni,[switch]$cleanPSTs) | |
# registry value mappings | |
$accountGuids = @{ | |
IMAP = '{ed475412-b0d6-11d2-8c3b-00104b2a6676}' | |
POP3 = '{ed475411-b0d6-11d2-8c3b-00104b2a6676}' | |
HTTP = '{4db5cbf0-3b77-4852-bc8e-bb81908861f3}' | |
} | |
$mappings = @{ | |
PT_STRING8 = @{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Copyright (C) 2007-2012, Manuel Meitinger | |
; This program is free software, distributed under the terms of | |
; the GNU General Public License Version 2. See the LICENSE file | |
; at the top of the source tree. | |
; (1) Alle Benutzer und Administratoren haben Voicemail und einen - mit einer Faxdurchwahl übereinstimmenden - Account-Code. | |
; (2) Alle Benutzer, und nur Benutzer kommen in den from-user Kontext. | |
; (3) Alle Administratoren, und nur Administratoren kommen in den from-admin Kontext. | |
; (4) Alle Geräte, und nur Geräte kommen in den from-device Kontext. | |
; (5) Kein Gerät hat Voicemail. |
OlderNewer