Skip to main content

Posts

Showing posts from November, 2015

PoSh Disable and Move AD Users

A quick and easy way to disable user accounts and move them into designated OU: Import-Csv  "C:\TEMP\users.csv"  | ForEach-Object { `       $u=$_. "sAMAccountName" ; $l= "Disabling and moving: "  +$u; write-output $l; `       Get-ADUser -Identity $u | `       Disable-ADAccount -PassThru | `       Move-ADObject -TargetPath  "OU=Disabled Users,OU=Organization,DC=domain,DC=local"    Input is provided via a CSV file: users.csv (username) sAMAccountName   jdoe1   jdoe2   jdoe3   jdoe4   jdoe5   To generate input file run something like this, review and edit as necessary: Search-ADAccount –UsersOnly –AccountInactive –TimeSpan 180.00:00:00 | `       where {$_.enabled} | `       Get-ADUser | `       select sAMAccountName | `       Export-Csv -Path  "C:\TEMP\users.csv"   

WordPress displays weird characters

Sometimes after a database conversion (e.g. from MySQL to MariaDB) or due to encoding issues a situation might arise when WordPress is showing weird characters. A quick way of remedying the situation would involve examining the pages to discover a pattern (what characters are being substituted, in the example below the apostrophe was replaced by  ’ ) then running an queries against the database to reverse the effect. Here's a quick example (common tables that store content): UPDATE  wp_posts  SET  post_content =  REPLACE (post_content,  'Â' ,  '' )      UPDATE  wp_posts  SET  post_content =  REPLACE (post_content,  '’' ,  "'" )      UPDATE  wp_postmeta  SET  meta_value =  REPLACE (meta_value,  'Â' ,  '' )      UPDATE  wp_postmeta  SET  meta_value =  REPLACE (meta_value,  '’' ,  "'" )      Please, keep in mind that to permanently resolve the issue you would need to get to the root of the p

Skype for Business and VTC Interoperability

Skype for Business (SfB) has a very, very strong potential, I have written about it in my previous post . I can't think of any other platform that shows as much promise in terms of bridging personal and business communications as well as unifying different modes and mediums. And all of this may have started with a strategic acquisition of Skype by Microsoft in 2011. That said, the road ahead is not without challenges. For example, interoperability with other platforms. Making SfB work with existing Video TeleConferencing (VTC) systems, many of which represent significant capital investments in organizations' infrastructure, could be of a particular importance. After reading statements like Skype for Business is based on Session Initiation Protocol (SIP) standards and supports H.264 (MPEG-4 video coding standard) one can come to a quick conclusion that integration and/or interoperability with other VTC solutions is easy or nearly automatic. Unfortunately, the industry is not

Skype for Business

Skype for Business (SfB), formerly known as Lync, has been steadily gaining in popularity. Partly, because of the robust set of features that has been implemented over the last few releases making the product truly Enterprise ready; partly, due to the rapid proliferation of Office 365, which includes SfB's cloud counterpart. With SfB and/or Skype client software available on a wide variety of hardware platforms (personal computers, tablets, mobile devices) and across multiple operating systems (Windows, Linux, iOS, Android) a possibility of establishing a ubiquitous multi-media communications platform seems firmly within reach. And best of all, when using SfB Online, without the need to invest into an expensive infrastructure. But wait, there's more! The cloud delivers on the promises of more innovation and continuous development cycle - Skype Meeting Broadcast, PSTN Conferencing, Cloud PBX with PSTN Calling are just a few examples. Read more at - Skype for Business Preview