Help with configuring MSMQ

Right click on “My Computer” → Manage → Services and Applications → Message Queueing:

Right click on Private queues (here is how to create public ones – https://technet.microsoft.com/en-us/library/cc776346(v=ws.10).aspx), New, Private Queue, give name, check the Transactional:

And then configure Hangfire:

var sqlServerStorage = new SqlServerStorage(
    @"Server=.\sqlexpress;Database=Hangfire.Sample;Trusted_Connection=True;");
sqlServerStorage.UseMsmqQueues(@".\Private$\hangfire-{0}", "default");