Jump to content

Martin

Most Valued User
  • Posts

    26
  • Joined

  • Last visited

  • Days Won

    3

Martin last won the day on January 8 2016

Martin had the most liked content!

Reputation

6 Neutral

1 Follower

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

1,510 profile views
  1. Das geht mit Send-IpPbxUserWelcomeMail nicht. Das Cmdlet stößt das Versenden nur an. Das Ausfüllen des Templates mit den aktuellen Daten des Benutzers und das Verschicken geschieht serverseitig. Anhänge sind da nicht vorgesehen. Was sie tun könnten, sind die fraglichen Dateien auf einem Webserver zur Verfügung zu stellen und die URLs zum WelcomeEmailTemplate hinzuzufügen. Wie man das Template anpasst, ist im Handbuch.erklärt.
  2. Ich habe gerade auch erst etwas suchen müssen. Die Eigenschaft auf dem UserEntry-Objekt heisst ProfileID. Das ist die ID, die bei get-ippbxcallingright angezeigt wird.
  3. Wenn man das für alle machen Benutzer machen will, geht das z.B. so: Get-IppbxUser | Set-IppbxUserPresenceState -IsDND:$False Das als geplanter Vorgang in Windows auf dem Server jede Nacht laufen lassen, um z.B. den Status zurückzusetzen. Zusätzlich noch -IsAway:$false anhängen, um auch das manuell gesetzte "Abwesend" wieder zurückzusetzen. Man könnte sich auch ein Script bauen, was regelmäßig als geplanter Vorgang läuft und prüft, ob ein Benutzer ausgeloggt ist, um dann den Status zurückzusetzen. Z.B. so: Get-IppbxUser -Readonly -AddDeviceInformation | Where-Object { $_.LoggedInDevices.Count -eq 0 } | Set-IpPbxUserPresenceState -IsDND:$False Persönlich würde mich das als User aber ziemlich nerven. Ich definiere mit dem Präsenzstatus selber, ob ich erreichbar bin oder nicht. Da soll keine Automatik dazwischenfunken, es sei denn, ich habe sie selber definiert. Vielleicht ist deshalb ein Hinweis netter, statt einfach zurückzusetzen. Du könntest mit einem geplanten Vorgang nachts z.B. den Usern mit "nicht stören" eine Email schicken: Get-IppbxUser -AddPresenceInformation | Where-Object { $_.IsDND } | ForEach-Object { Send-MailMessage -To $_.EmailAddr ` -Subject "Friendly reminder: Your SwyxWare status is still set to 'do not disturb'" ` -From <fromaddress> ` -smtpserver <mailserver> ` -Credential $Credentials }
  4. There's an easier way using built-in PowerShell functionality ;-) Export-PfxCertificate -Cert $c -Password (Read-Host -Prompt "Password" -AsSecureString) -FilePath ./clientcert.pfx
  5. Version 1.30.0020.0

    78 downloads

    IpPbx Controller is a small application which automatically pauses a media player like winamp or Windows Media Player when you're receiving or making phone calls. And it automatically changes your MSN/Live Messenger status to "On the phone" when you're in a phone call. Supported media player: Windows Media Player 9 or newer Winamp (local or remote by using Browseamp plugin) Roku Soundbridge Generic (sending keystrokes similar to modern keyboards' play/pause keys) Requirements: SwyxIt v4.20 or newer (v6.02 recommended) Microsoft.Net Framework 2.0 Installation: Unpack the ZIP file and double click the MSI file to start the installation. Update from older versions: Unfortunately there is a bug in the 1.30.0010.0 build. When you update from that version to the latest one, Windows Media Player cannot be controlled. Double click this version's MSI file again and choose the "Repair" option to fix that. What's new: Setup offers to create a desktop shortcut Fix: IpPbxController lets Roku Soundbridge play when a phone call ends, but Soundbridge was not playing before the phone call. This tool was originally published on the old Swyx Forum page at 25.07.2007.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and have taken note of our Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.