Blog

Prevent Forwarding of Outlook Meetings

The ability to quickly and easily forward an Outlook meeting
to another recipient is an essential feature. Maybe you canā€™t make it and you
need to send a delegate. Maybe you identify from the invite that bringing along
a colleague whoā€™s a subject matter expert would be beneficial. There are
probably many other scenarios.

As a meeting organizer though, itā€™s possible that you donā€™t
want people to be able to forward your meetings. Perhaps the location you have
booked is of a limited size. Perhaps the meeting content is sensitive and
discussion restricted to a particular group. There are probably many other
scenarios for wanting to keep tight control over the recipient list too.

Well, good news! Iā€™ve recently discovered this is possible,
and with just a few lines of VBA you can create meetings that have the
ā€œforwardā€ button disabled. If a recipient wants to extend the invite to someone
else, they have to come back to you and ask that you do it for them.

Itā€™s worth pointing out right at the top that this technique
only works in the Microsoft Outlook desktop client. You have to be using it,
and so do the meeting recipients. If your recipients also have their
email/calendar available to them on another client (including mobile devices
and webmail) then
they can use the other client to
forward the meeting.

Itā€™s also worth pointing out that full credit for this goes
to user GranEYb
on Microsoftā€™s TechNet
forums
. I have merely tidied up his/her instructions, and turned them into
a quick screencast. The instructions are for Outlook 2013. I know the code also
works in Outlook 2010. I havenā€™t tested it with other versions. YMMV.

Screencast

[youtube https://www.youtube.com/watch?v=tuABYCg9iEw?feature=oembed&enablejsapi=1&origin=https://safe.txmblr.com&wmode=opaque&w=540&h=404]

Instructions

First, enable developer tools in Outlook:

  1. Open Outlook 2013
  2. Click File
    -> Options -> Customize Ribbon
  3. In the right-hand pane, place a checkmark next
    to the Developer group and click OK

Open Visual Basic for Applications and write the code:

  1. Navigate to the Developer tab on the ribbon, and
    select Visual Basic
  2. In the Visual Basic for Applications window,
    click Insert -> Module
  3. Copy the code from below, and choose File -> Save, or click the Save
    icon
  4. Close the Visual Basic for Applications window

The code:

Sub DisableForwarding()
    ActiveInspector.CurrentItem.Actions("Forward").Enabled = False
    MsgBox "Forwarding of this item has been disabled"
End Sub

Sub EnableForwarding()
    ActiveInspector.CurrentItem.Actions("Forward").Enabled = True
    MsgBox "Forwarding of this item has been enabled"
End Sub

Create the
buttons in Outlook:

  1. Open
    Outlook calendar
  2. Click
    New Appointment
  3. Click
    File -> Options -> Customize
    Ribbon
  4. In
    the right-hand pane, select the Appointment tab and click New Group
  5. Select
    the New Group (Custom) item and click Rename
  6. In
    the Display Name box, enter Forward
    Control
    . Click OK
  7. In
    the left-hand pane, select the Choose Commands From: dropdown and select Macros
  8. Select
    Project1.DisableForwarding and click the Add
    >>
    button between the panes
  9. Select
    Project1.EnableForwarding and click the Add
    >>
    button between the panes
  10. In
    the right-hand pane, select Project1.DisableFowarding and click Rename
  11. In
    the Display Name box, enter Disable
    Forwarding
    . Click OK
  12. In
    the right-hand pane, select Project1.EnableForwarding and click Rename
  13. In
    the Display Name box, enter Enable
    Forwarding
    . Click OK
  14. Click
    OK at the bottom of the Outlook
    Options window

All done!
If you wish, you can now hide the developer tab that we enabled with the first
three steps.

To use the
tool, create a new meeting invite as you normally would, but before hitting the
send button hit the Disable Forwarding button first. Recipients of your invite
will find that the Forward button is disabled.

image

Meetings do
not have forwarding disabled by default, but if you need to re-enable
forwarding for any reason then the Enable Forwarding button is your friend.

Enjoy!

Blog

[youtube https://www.youtube.com/watch?v=rodL7zcINJo?feature=oembed&enablejsapi=1&origin=http://safe.txmblr.com&wmode=opaque&w=500&h=375]

Just a couple of days ago I wrote a little bit about how cloud servers are such a commodity item now, easily created and destroyed.

Today I wanted a server to test out a new tool, but I didnā€™t want to risk there being any impact to any of my existing production servers. So I created a new one on Vultr. From the time I started to the time I had a running server was just over a minute, and I recorded a screencast.

When I was done testing a couple of hours later I destroyed the server. Total cost to me for this exercise was about $0.02, or it would have been were it not for the fact that Vultr gave me a $5 account credit when I signed up.

Itā€™s hardly riveting viewing, but itā€™s nevertheless amazing in its own way.

Blog

Server Commoditization

Iā€™ve had a personal website of one description or another
for a long time now. For much of that time, the site was hosted by renting
space on someone elseā€™s large server ā€“ so called ā€œshared hosting.ā€

The theoretical problem with this model was that the
serverā€™s resources were shared between all its users, and if one user chewed
through a whole lot of them then that left fewer available for everyone else.
Iā€™m not sure I ever actually experienced this (although Iā€™m sure it really was
an issue for web hosting companies to contend with), but the problem I did come
across was that to protect against this kind of thing hosts often put policies
and configuration options in place that were very restrictive. Related to this
is the fact that server configuration options apply to everyone with space on
that server, and theyā€™re not for individual users to control. A problem if you
want to do anything that deviates even slightly from the common-case.

The alternative to shared webhosting would have been to rent
an entire server. This was ā€“ and still is ā€“ an expensive undertaking. It also
was ā€“ and still is ā€“ far more power than I need in order to host my website.
Sure, itā€™s possible to build a lower-powered (cheaper) server, but the act and
cost of putting it in a datacentre to open it up to wider world mean that itā€™s
probably not a worthwhile exercise to do all that with low-cost hardware.

What seems to me like not very long ago, virtualization
technology took off and created a market for virtual private servers (VPSs).
This allowed server owners to divide their hardware up between users, but in
contrast to shared hosting each user gets something thatā€™s functionally
indistinguishable from a real hardware computer. They can configure it however
they wish, and it comes with a guaranteed chunk of resources: heavy usage of
one of the virtual machines hosted on the server does not negatively impact the
performance of any of the others.

This is the model under which my website is currently
hosted. Iā€™ve chosen a low-powered VPS because thatā€™s all I need, but recently
as my site has started to see more traffic it occasionally sees spikes in
incoming traffic that tax its limited memory and processing resources. I use CloudFlare as a service to balance this
out, mitigate threats, easily implement end-user caching policies and generally
improve speeds (particularly for those users that a geographically far away
from the server), but once my server resources are maxed thereā€™s nothing I can
do about it: my host has divided the server up into VPSā€™s of a predefined size,
and doesnā€™t allow me to grow or shrink the server along with my needs.

The new paradigm is an evolution of this. Instead of
dividing each bare-metal server up into predefined VPS chunks, each server is a
pool of resources within which VPSs of various sizes are automatically
provisioned according to customer requirements. Behind the scenes, technology
has grown to make this easier, especially when you scale the story up to more
than one bare-metal server. A pool of physical servers can also pool resources.
If a VPS hosted on one physical server needs to grow beyond the remaining
available resources of its host, it can be invisibly moved to another host
while itā€™s still running and then its resources expanded.

This new paradigm is the one I plan to move to. Led by the
likes of Amazon and Google and now followed in the marketplace
by lower-cost providers like DigitalOcean
and Vultr (likely to be my
provider of choice), servers have really become commodity items that can be
created and destroyed at will. You used to rent servers/hosting by the month or
year, now itā€™s by the minute or hour. Itā€™s common for hosting companies to
provide an API that lets you automate the processes involved ā€“ if my server
detects that itā€™s seeing a lot of traffic and is running low on resources it
could ā€“ with the right script implemented ā€“ autonomously decide to grow itself,
or maybe spin up a sibling to carry half the load. When things settle down it
can shrink itself back down or destroy any additional servers it created.

What a wonderful world we live in!

Blog

TorrentApp

I have a small app on my computer that I wrote myself. Itā€™s
small and simple, and itā€™s the default application for opening BitTorrent files on our computers. When I
download one of these files the app takes the file and moves it to a folder on
the server. This folder is watched by my torrent
client of choice
which runs on the server and immediately starts the
download when it sees the file.

The app then pops up a notification to the user to ask if
they want to be directed to the deluge web interface to see the download
progress.

I rewrote the app about a year ago. The original version was
written in RealStudio but the
location of the watched folder and the URL for Delugeā€™s web interface were
hard-coded in: a reasonable design decision given it was just a small app for
only my use one, but still a poor one ā€“ when a change I made to my network
configuration required me to adjust these variables I no longer had a copy of
RealStudio available.

I wrote a new version in Visual
Basic 2010 Express
, and this time I did a little extra work to take the
configuration variables out of the source code and put them into an .ini file.

Why am I telling you all this?

Well, not that I think youā€™d need the app, but I have today
made the source code
(and the compiled executable, for good measure) publicly available on my brand
new GitLab account!

Iā€™ve been using Git for a while (and Iā€™ve written about it once
or twice
before), but I really havenā€™t been taking advantage of its featureset.

Iā€™m working on something right now thatā€™s big and complex
and I value having version control and branches to work with. I already have
Git installed on my server (both my home server and my public webserver), but
Iā€™ve downloaded a windows Git client
to compliment that setup and opened a GitLab account to use as an external
repository and a means to eventually make a finished product public.

Why have I chosen GitLab over the more ubiquitous GitHub? GitHub makes you pay to host a private
repository, and I want somewhere where I can both host code thatā€™s a work in
progress (and not ready for public distribution) and distribute completed code
thatā€™s ready for download, public review and maybe even improvement by the
wider community. GitLab gives me free private repositories for
partially-completed things that I can later make public once Iā€™m ready to.

Iā€™ve already created a couple of public repositories, mostly
to test the platform out, and TorrentApp is one of them.

So use it if itā€™s a tool that might be useful to you,
improve upon it if you have the expertise, and send me a merge request so I
can incorporate your changes into the code!

Blog

How to Recover From an Unproductive Day Like It Never Happened

There was one day last week where I accomplished more in the last hour of my day than I did in the previous 6ish. This happens to everyone from time to time: despite our best intentions, there are all sorts of things that can cause a workday to go sideways on us.

We all have unproductive days. Maybe an unexpected event throws your schedule for a loop. Maybe youā€™re not feeling well. Whatever the reason, it can be tough to get back on track. Hereā€™s how to get past the dip in productivity and back into gear.

For me, key to recovering when a day turns unproductive is to find a way to reset and tackle the remainder of the day with a renewed focus. I spend 15 or 20 minutes at the start of every day composing a to-do list and defining my action plan for the day, and when I find myself unable to execute on that plan for whatever reason I repeat that exercise and re-define my action plan based on my new reality. I also find it helps a lot to have a change of scenery: if Iā€™m in the office and my day isnā€™t going the way I wanted it to then Iā€™ll go home and work the rest of the day from there. If Iā€™m already home then I might head to my favourite coffee place and spend an hour or two working in that environment.

I also find that as part of redefining my to-do list itā€™s important to be fully inclusive. My day consists of both big and small tasks, and itā€™s tempting when putting a list together to omit the small ones and just do them immediately, but of course this only leaves the big tasks where Iā€™m more reliant on others and unforeseen things are more likely to occur. When things donā€™t go to plan itā€™s entirely possible to end up with a to-do list that has nothing checked off at the end of the day, and itā€™s important to me not to finish my day that way ā€“ Iā€™d much rather spend my evening relaxing with at least a small sense of accomplishment than worrying about a perceived lack of achievement. If Iā€™m only able to achieve smaller things that day then so be it, but thatā€™s better than nothing and cause for correspondingly small celebration, but celebration nonetheless.

If youā€™re not able to recover your productivity within the working day? Well, that happens to the best of us and isnā€™t cause for panic. The article Iā€™ve linked to above has some tips and tricks to help us get back on the metaphorical horse the following day.

How to Recover From an Unproductive Day Like It Never Happened

Blog

SharePoint on a Domain Controller Revisited

On Tuesday I wrote about installing SharePoint Foundation
2010
on my home windows server, which also acts as a domain controller, and I
concluded by saying that Iā€™d encountered performance issues as a result of that
(non-recommended) setup.

Turns out, the performance issues were a complete coincidence,
and everything is now running just fine.

The problem I was experiencing was that two of my three forward
DNS servers werenā€™t working correctly. Now that my
service provider
has corrected their issue, everything is great.

image

For a small setup like mine, Iā€™d say go ahead
and install SQL Server Express and SharePoint on the domain controller. It
works great!

Blog

Installing SharePoint Foundation on a Domain Controller

Itā€™s been a long time since I blogged about SharePoint, and thatā€™s
largely because I havenā€™t had a need to develop anything custom on top of the
platform for quite some time.

If youā€™ve been following along for a long time, you may
recall that back at the start of last year I installed
SharePoint foundation on a Windows 7 Virtual Machine
at home for testing
purposes and, while I didnā€™t blog about it explicitly, when I upgraded
my home server
last August I replaced that Windows 7 virtual machine (which
ran on my laptop) with an always-on Windows 2008 R2 VM, again running
SharePoint foundation.

As my home network continued to evolve I turned that Windows
Server VM into a domain controller, and this broke my SharePoint installation ā€“
but by then it wasnā€™t all that important and I didnā€™t need it for work anymore,
so I simply uninstalled it.

Recently, Iā€™ve been missing having SharePointā€™s
functionality at home. In particular, I wanted a shared calendar for Flo and I,
and a place for shared documents. We can achieve much of this with Google
calendar and our existing shared folders (and I already have a tool deployed that makes our network shares
available from outside our home network), but it all feels a little kludged together
and itā€™s lacking features like NTLM based SSO and an easy way to edit files
from the web-interface that SharePoint provides out of the box. I looked at a
couple of alternative
solutions and wasnā€™t satisfied.

Previously Iā€™d deployed SharePoint foundation in standalone
mode. This installs and runs all the required components on a single machine.
Itā€™s not recommended for a full-scale deployment, but itā€™s perfect for our home
network. The problem is that this simply isnā€™t an option if you install it on a
domain controller, and instead you have to install a server farm. In googling
around, the consensus online seemed to be that it wasnā€™t possible to install
SharePoint on a single server if that server was also acting as the domain
controller.

Not so.

It is possible, and in fact itā€™s pretty easy. I made a
couple of missteps by attempting to follow along with what some other people
had done, but the solution was actually extremely simple: first you need to
install SQL
Server 2008 R2 SP2 express
(and it has to be at least this version), then
you install SharePoint
Foundation 2010
. For all the discussion online, I actually didnā€™t have to do anything other than accept the default options to install SQL server. When I installed
SharePoint it doesnā€™t give me the option to install in Standalone mode, but I
simply pointed it to the SQL Server instance I had installed and that was all
there was to it.

That being said, things are not all that rosy. Just because
this setup is possible, doesnā€™t mean itā€™s recommended ā€“ and this is certainly
not Microsoftā€™s recommended way of doing things.

Microsoft advocate for a separation of server duties, and
having different, unrelated services running on different machines. Now that Iā€™ve
entirely eschewed that philosophy I can see why itā€™s important: SharePoint is
running well and performance is snappy, but general internet performance on our
home network has suffered, and I believe the fact my single Windows server is
also the DNS server for the network is the problem ā€“ DNS lookups are slow.

I may try and solve this by trying to install a slave DNS
server on the Linux server we have, but if not then I think SharePoint will
have to go away in the interests of DNS performance.

Or, maybe I just add a second physical server and move a few
of the VMs to that? Weā€™ll see.