• 0

Automatic Out of Office after 15:00 Mon-Fri?


Question

I have a work colleague that works 09:00 to 15:00 but standard business hours are until 17:00.

 

Is it possible for Out of Office to automatically switch on at 15:00 and turn off at 09:00 Mon-Fri in Microsoft Outlook 2013?

13 answers to this question

Recommended Posts

  • 0

Do you have an Exchange server? i presume yes because you said you are using OOO.

 

In Exchange 2013 / Exchange Online you can set this via PS:

Set-MailboxAutoReplyConfiguration -Identity MAILBOX -AutoReplyState Enabled -InternalMessage "OOO Internal message." -ExternalMessage "OOO External Message."

So you can create a schedule task in the Exchange Server that runs once this PS for the target user mailbox (at the start time of the OOO) and one schedule task that also runs once that runs the same PS but with the Disabled parameter (at the end of time of the OOO). That way you can have a OOO that is recurring automatically for a single user; if more users want this feature be sure to see the performance impact of starting and ending this PS for a big quantity of users.

 

You can see more parameters for this PS command in here: http://technet.microsoft.com/en-us/library/dd638217.aspx

  • 0

If you have outlook 2010 and go to File, Info, Automatic Replies (Out of Office), you can set the time period for when the out of office will work for.  You will need to setup multiple rules for the different days, but it can be accomplished.

  • 0

More info is needed... are you using some kind of PBX system? Or IP Phone? 

Sorry, I had "Outlook 2013" in the topic's tags but I've added it to the message body.

 

If you have outlook 2010 and go to File, Info, Automatic Replies (Out of Office), you can set the time period for when the out of office will work for.  You will need to setup multiple rules for the different days, but it can be accomplished.

I'll take a look at Rules, many thanks (Y)

  • 0

i don't think a scheduled powershell script is that complicated, its very simple to understand. try it? :)

We're just a small company with 8 computers and 1 server connected to a UPS. Non of us know what PowerShell is or how to use it and although I could figure it out, I don't want to mess.

  • 0

i don't think a scheduled powershell script is that complicated, its very simple to understand. try it? :)

While for some powershell scripts are not hard to understand The OP's colleague wanted to set the OOO reply his/her self so they might not be comfortable in setting a status via powershell or have the access to do so. Setting via a powershell script is more of a Admin task and i am sure if the admin of the exchange box wanted to do this they would have there own way of doing  it.

 

edit (sorry Elliot b) didnt see your reply until i posted mine.

  • 0

While for some powershell scripts are not hard to understand The OP's colleague wanted to set the OOO reply his/her self so they might not be comfortable in setting a status via powershell or have the access to do so. Setting via a powershell script is more of a Admin task and i am sure if the admin of the exchange box wanted to do this they would have there own way of doing  it.

 

edit (sorry Elliot b) didnt see your reply until i posted mine.

I have no issue if it was my server, I'd love to mess.

 

I was just hoping there was a UI option within Outlook that I was missing.

  • 0

Sorry. To be honest, that's way too complicated for us, shame it's the only way to do it. But we appreciate your help!

 

Do you have someone or a enterprise managing your email? If yes then ask them if they can implement that (server side) if it's an Exchange Server, because that will be automated and won't depend of the end user.

 

But in Outlook the only way to do this is by scripting: you can set a macro to start the OOO everytime the Outlook closes, so if your college closes the Outlook it will automatically start the OOO. This, of course, requires testing (tests to see if the OOO answers to internal and external mails).

 

You can create a macro like this:

Private Sub Application_Quit()
    OutOfOffice True
End Sub

Private Sub Application_Startup()
    'Remove this subroutine if you do not want to turn OOF off automatically.'
    OutOfOffice False
End Sub

Sub OutOfOffice(bolState As Boolean)
    Const PR_OOF_STATE = "http://schemas.microsoft.com/mapi/proptag/0x661D000B"
    Dim olkIS As Outlook.Store, olkPA As Outlook.PropertyAccessor
    For Each olkIS In Session.Stores
        If olkIS.ExchangeStoreType = olPrimaryExchangeMailbox Then
            Set olkPA = olkIS.PropertyAccessor
            olkPA.SetProperty PR_OOF_STATE, bolState
        End If
    Next
    Set olkIS = Nothing
    Set olkPA = Nothing
End Sub

and add it to your current Outlook session. So everytime your college starts Outlook, the OOO is disabled; everytime he closes it, it enables the OOO.

 

you can check here the full article for this solution: http://www.experts-exchange.com/Software/Office_Productivity/Groupware/Outlook/A_3487-Automating-Out-of-Office-in-Outlook.html

  • 0

Hi Elliot,

 

You can create a normal outlook rule that checks the header of a received email to see if it contains " 00:", " 01:", " 02:" (add one for each hour you want the out of office reply) and then have the server reply with your out of office message. The text to search for is a space, the hour, and a colon.

This topic is now closed to further replies.
  • Posts

    • MPC-BE 1.9.0 by Razvan Serea Media Player Classic - BE is a free and open source audio and video player for Windows. Media Player Classic - BE is based on the original "Media Player Classic" project (Gabest) and "Media Player Classic Home Cinema" project (Casimir666), contains additional features and bug fixes. The BE mod (Black Edition Mod) is a skinned version of Media Player Classic Home Cinema, much better looking than the plain old MPC. MPC-BE 1.9.0 changelog: Splitters Fixed crashes in some situations. AudioSplitter Added support for the RF64 format. Fixed reading of channel layout for some WavPack files. Added support for ID3 tags for Wave64 files. Unknown Wave64 chunks are now ignored. AviSplitter Added support for 'y408' video. Improved support for 'HEVC' video. FLVSplitter Added support for VVC video. MP4Splitter Improved handling of corrupted files. MatroskaSplitter Expanded support for V_UNCOMPRESSED video codecs. Fixed support for frame rotation (ProjectionPoseRoll). Improved support for "V_MS/VFW/FOURCC / HEVC". MpcDvdVideoDecoder Fixed conversion to YUY2. Fixed display of menus for some DVD-Videos. RoQVideoDecoder Output in NV12 and YV12 formats is allowed. Full range is used. MPC Video Decoder RGB32 format will be output as a top-down bitmap by default. Added support for the "IID_MediaSideDataDOVIMetadataV2" interface. Removed support for the deprecated "IID_MediaSideDataDOVIMetadata" interface. Fixed retrieving the name of the video adapter when using NVDEC. Fixed crashes in some situations. MPC Video Converter Added support for AYUV video format. MpcAudioRenderer Improved input format validation. Optimized retrieval of supported formats for exclusive mode. Added the "Keep audio device active when paused" setting. Fixed crashes and freezes in various situations. Subtitles Added the ability to open the properties of an external subtitle renderer in the "Subtitles" settings panel. Fixed external subtitle connections for VSFilter. Fixed a crash when rendering PGS/SUP subtitles when using AVX2. YouTube Improved support for yt-dlp. The built-in YouTube parser is no longer used. Player The HTTP read strategy has been changed. If the playlist contains one entry, more key combinations can be used to control the player (jump through chapters, adjust volume). Improved support for reading ASX playlists. The translation of the MediaInfo report for Chinese, Korean and Japanese has been removed. Added blocking of 32-bit filter "PICVideo Lossless JPEG Decompressor" (pvljpg20.dll), because it crashes. Added blocking of the system filter "AVI Decompressor", which will eliminate the crash of VFW codecs. Fixed a rare crash when using the "/slave" key. Fixed a crash when getting a list of fonts for OSD. Added the ability to load an external audio file using hotkeys. Fixed opening a network path starting with \?\UNC. The "Determine duration when adding" playlist setting now works for YouTube video URLs. The "Online media services" settings panel has been redesigned. Added a "Merge files using FFmpeg" option to the file saving dialog. This option is activated when playing multiple streams obtained using yt-dlp. Added loading of local .dpl playlists ("DAUMPLAYLIST"). Fixed a hang when the user closes the player during the URL opening process. Various interface fixes. Installer Updated MPC Video Renderer 0.10.5. Updated MPC Script Source 0.2.17. Added MPC Image Source 0.3.6. Translations Updated Japanese translation (by tsubasanouta). Updated Chinese (Traditional) and Dutch translation (by beter). Updated Romanian translation (by Andrei Miloiu). Updated Hungarian translation (by mickey). Updated Turkish translation (by cmhrky). Updated German translation (by Klaus1189). Updated Chinese (Simplified) translation (by wushantao). Updated Italian translation (by mapi68). Updated Korean translation (by Hackjjang). Updated Chinese (Traditional) (by udfbe). Updated libraries dav1d 1.5.3-6-g04b69f9; ffmpeg n8.2-dev-1857-g4653e68aab; libpng git-v1.6.55-9-g7d52a8087; Little-CMS git-lcms2.18-26-gf739cda; MediaInfo git-v26.05-38-g702c9b7fd; ZenLib git-v0.4.41-91-g073f297; zlib 1.3.2. Download: MPC-BE 64-bit | Portable MPC-BE 64-bit | ~20.0 MB (Open Source) Download: MPC-BE 32-bit | Portable MPC-BE 32-bit Link: Media Player Classic - BE Home Page Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Apple reportedly looks to blacklisted Chinese memory chips as RAM prices climb by Karthik Mudaliar Image via Apple Apple is reportedly trying to get a clearance from the Trump administration to buy memory from ChangXin Memory Technologies (CXMT) to get some relief from soaring DRAM prices. As per a report by the Financial Times, Apple approached the Commerce Department more than a month ago and also spoke to other officials and allies in Washington. For starters, CXMT is a company that's already been placed on the Pentagon's list of Chinese military companies. The Chinese company is the country's top DRAM maker. For Apple, the timing is certainly awkward but not surprising. Tim Cook had recently warned that Apple would have to raise prices because AI companies are buying up large amounts of memory for data centers, and just like that, Apple raised MacBook and iPad prices. Micron also recently revealed that customers have committed billions of dollars to secure memory supply years in advance, which shows us how aggressive securing infrastructure has become. This gives suppliers such as Samsung, SK Hynix, and Micron more leverage, while pushing hardware makers to look for alternatives. CXMT is one of those alternatives, but not the simplest one. Apple has spent many years trying to diversify parts of its supply chain away from China, especially for final assembly, while still depending heavily on Chinese manufacturing and suppliers. Even domestic brands from China are moving towards CXMT and YMTC instead of relying on Samsung, Micron, and SK Hynix. For Apple, though, it would invite more scrutiny than local Chinese companies. For now, this is more like a lobbying effort rather than a confirmed supply deal. There's no official statement from either of the parties. What is clearer, though, is the pressure behind such a request. AI demand has certainly made hardware a bottleneck, and companies are trying everything they can to bring things back to normal, even if that means making politically sensitive choices. Source: Financial Times
    • I did test it a month or so back, but ... the results I expect to be on the first page are not there.
    • Neowin is saying these are good prices? Thats crazy. As others have said they are just ######. Time for big tech to bring down the prices for real not this fake crap.
    • The iFlyTek AINote 2 is among the thinnest E-Ink tablets. It has an EMR stylus, a built-in fingerprint reader, and plenty of built-in AI features. You had me until "and plenty of built-in AI features." That and any company that still does the iProduct naming trope is an immediate pass. It suggests the company isn't very imaginative or creative and is trying to piggyback off another company's success. Extremely lame. Also kind of expensive. Better choices at lower prices out there.
  • Recent Achievements

    • Week One Done
      flexorcist earned a badge
      Week One Done
    • One Month Later
      Woland13 earned a badge
      One Month Later
    • Week One Done
      Woland13 earned a badge
      Week One Done
    • One Year In
      bernmeister earned a badge
      One Year In
    • Week One Done
      Scoobystu earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      486
    2. 2
      +Edouard
      220
    3. 3
      PsYcHoKiLLa
      147
    4. 4
      Steven P.
      74
    5. 5
      FloatingFatMan
      70
  • Tell a friend

    Love Neowin? Tell a friend!