Sunday, December 31, 2017

Cleaning Up Your Disks on Windows 10

It is good to clean up your drives to remove unnecessary files, logs, and extra stuff that is no longer needed. Perform this before defragging your drives for optimal results.



Obviously, as you will see, you should click on the Clean System Files button first as this will make you check the boxes you previously did otherwise.



Saturday, December 30, 2017

Downloading and Installing Steam on Windows 10

Steam seems to be the de facto service for online gaming. This involves purchasing, downloading, and/or accessing game applications. However, first you need the Steam application itself. While it is easy to install, there may be younger gamers out there that need their parent's assistance, and there may be parents that do not know what to do. Therefore this video shows the steps and processes involved. As you will see, there may be additional updates that needs to be downloaded, extracted, and installed; this happens automatically without any additional efforts.



Friday, December 29, 2017

Optimizing Drives on Windows 10

Before you optimize your drives, I would recommend cleaning up your disks first. See my post on cleaning up your drives here.

Downloading and Installing Notepad++

For my novice students, followers, readers, etc. When I teach beginner HTML, I mention the use of Notepad++. This video shows the easy steps for downloading and installing Notepad++ on a Windows platform.



Saturday, May 20, 2017

Thursday, May 4, 2017

SharePoint 2010/2013: Workflow Invoking on an Email Enabled List

Scenario:
You have an emailed enabled list in SharePoint. You also have a workflow created against the list that is configured to run on both the creation and update of list items. When someone sends an email to the list, you want the workflow to run. You either want to include or exclude the original email.

Default Behavior and Settings
When enabling Incoming Email on a list, the default setting is to include the original email.



If you have a workflow associated with this list with this setting as Yes, that workflow will invoke when a user emails into the list. My particular workflow needed to send all attachments from the email to a particular Exchange mailbox.

My Result
My workflow worked fine. When an email was sent to the list with attachments, my workflow was able to send those attachments to the Exchange mailbox. Included was the original email as an .eml file.

Not Including the Original Email
However, in my scenario, I needed to keep the email anonymous. Therefore, I did not want to include the original email as that would display the original sender. So I switched the Incoming Email setting to No.



Workflow Behavior Without Original Email
Once I did not include the original email, the workflow associated no longer invoked when a user sent an email to the list. Bummer.

Solution
As my director always says, "There's gotta be a setting for that". This is not always the case but in this case I got lucky.

There is a setting that will invoke workflows when a user emails into this list without saving the original email. It is crazy that this setting (and you'll see the name soon) actually exists.

There is a SharePoint Administration setting within the content service that allows declarative workflows (SharePoint Designer) to invoke on email enabled lists. The setting is named DeclarativeWorkflowStartOnEmailEnabled.

No way! Really? This is what I needed. Back in the day this setting was set using stsadm. Nowadays, a few PowerShell statements and you are set (pun intended).



$spWebService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$spWebService.DeclarativeWorkflowAutoStartOnEmailEnabled= $true
$spWebService.Update()


Yeah baby!

Result
As a result in my scenario, the workflow is now invoked when a user emails into the list without saving the original email. The sending of attachments to the Exchange mailbox no longer includes the original email (.eml) file.




Kudos
Special thanks to my wonderful co-worker Liz Lowry for remembering there was an email setting to not include the original email.


Matched Content