<script data-pm-proxy="intercept"></script><?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"><channel><title><![CDATA[Innovation Technology & People]]></title><description><![CDATA[Digital work]]></description><link>https://danholme.substack.com</link><image><url>https://substackcdn.com/image/fetch/$s_!80t3!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fdanholme.substack.com%2Fimg%2Fsubstack.png</url><title>Innovation Technology &amp; People</title><link>https://danholme.substack.com</link></image><generator>Substack</generator><lastBuildDate>Tue, 01 Sep 2026 09:37:26 GMT</lastBuildDate><atom:link href="/__u/danholme.substack.com/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[Dan Holme]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[danholme@substack.com]]></webMaster><itunes:owner><itunes:email><![CDATA[danholme@substack.com]]></itunes:email><itunes:name><![CDATA[Dan Holme]]></itunes:name></itunes:owner><itunes:author><![CDATA[Dan Holme]]></itunes:author><googleplay:owner><![CDATA[danholme@substack.com]]></googleplay:owner><googleplay:email><![CDATA[danholme@substack.com]]></googleplay:email><googleplay:author><![CDATA[Dan Holme]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[Portable Knowledge for Agents]]></title><description><![CDATA[Teaching Your Coding Agent to Remember Across Clones, Worktrees, and Machines]]></description><link>https://danholme.substack.com/p/agent-knowledge-across-clones-repos-machines</link><guid isPermaLink="false">https://danholme.substack.com/p/agent-knowledge-across-clones-repos-machines</guid><dc:creator><![CDATA[Dan Holme]]></dc:creator><pubDate>Wed, 29 Jul 2026 17:58:05 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/808b3baa-a323-4063-a88d-e6303363ae6b_1024x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>You spend an afternoon teaching your AI coding assistant the hard-won lessons of your codebase: which config flag silently gets ignored, which script needs a specific non-interactive flag, which server alias to use, which git dance resolves a merge conflict without destroying someone else&#8217;s work. It nods along, gets it right for the rest of the session, and you feel like you&#8217;re finally getting somewhere.</p><p>Then tomorrow you open a different <code>git worktree</code> for a parallel task. Or you clone the repo again into a sibling folder because that&#8217;s how your team works around branch isolation. Or you sit down at a different machine. And the assistant is a blank slate again. Everything you taught it yesterday is just... gone.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Innovation Technology &amp; People! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>This isn&#8217;t a bug. It&#8217;s a direct consequence of a fact most of us don&#8217;t think about until it bites us: <strong>&#8220;the same repo&#8221; is not one thing.</strong> A sibling clone, a linked worktree, and a fresh checkout on another laptop all look identical to you &#8212; same files, same history, same branch names &#8212; but to most tooling, including your editor&#8217;s memory of past conversations, they are entirely separate, unrelated folders that happen to share a git history.</p><p>Once you accept that, a second realization follows: there isn&#8217;t one place to &#8220;remember&#8221; things. There are several, each with a genuinely different scope, a different loading behavior, and different rules about what belongs in it. Picking the wrong one either means the knowledge never reaches a new clone at all, or it gets duplicated somewhere it can quietly drift out of sync, or &#8212; worst case &#8212; it ends up permanently baked into your git history when it should never have been written down anywhere near version control.</p><p>This post is a field guide to that decision, built from actually working through it in one real repository.</p><blockquote><p><strong>Scope note:</strong> everything concrete in this post &#8212; the settings, the folder-scanning behavior, the auto-run task, the exact mechanism names &#8212; is specific to <strong>VS Code</strong> and GitHub Copilot Chat inside it. The three-axes framework generalizes to any coding agent; the specific knobs described below do not. Keep that distinction in mind as you read, and see the call-to-action at the end.</p></blockquote><h2><strong>The three axes that actually matter</strong></h2><p>Every knowledge store below can be placed on three independent axes:</p><ol><li><p><strong>Portability</strong> &#8212; does this content travel to a new clone, a new worktree, a new machine, or is it stuck to the one folder you&#8217;re sitting in right now?</p></li><li><p><strong>Ambient loading</strong> &#8212; does this content show up automatically in the agent&#8217;s context, or does someone (or something) have to go looking for it on purpose?</p></li><li><p><strong>Sensitivity fit</strong> &#8212; is it safe for this content to live somewhere that&#8217;s tracked by git forever, or does it need to live somewhere that never becomes part of version history?</p></li></ol><p>Almost every mistake in this space comes from conflating two of these axes &#8212; assuming that because something is <em>portable</em>, it must also be <em>ambient</em>, or that because something is <em>committed</em>, it must be <em>safe</em>. It isn&#8217;t. They&#8217;re independent, and you have to reason about all three separately for every piece of knowledge you want to keep.</p><h2><strong>The stores, one at a time</strong></h2><h3><strong>1. Session memory &#8212; the scratchpad</strong></h3><p>The shortest-lived tier: notes scoped to the current conversation only, cleared when it ends. Useful for in-progress task state you don&#8217;t want cluttering anything more permanent. Zero portability, by design &#8212; it&#8217;s not supposed to outlive the conversation.</p><h3><strong>2. Repo/workspace memory &#8212; the surprising one</strong></h3><p>This is the tier most people assume is &#8220;remembering the project.&#8221; It persists across conversations, which feels like durability. But it&#8217;s keyed to a workspace-storage identifier tied to the <em>specific folder path</em> you opened &#8212; not to the repository as a concept, and not even to its git remote.</p><p>The practical consequence, confirmed directly in this session: open a <code>git worktree</code> of the exact same repository, on the exact same machine, one directory over &#8212; and its memory starts completely empty. Not stale, not partial. Empty. The same is true of a second sibling clone, or a fresh <code>git clone</code> anywhere else. This tier&#8217;s real scope is &#8220;one folder, as opened by this tool, on this machine&#8221; &#8212; nothing about the word &#8220;repository&#8221; implies anything wider than that.</p><p>That makes this tier good for exactly one thing: a working index. Short pointers to where the <em>real</em>, durable version of something lives, plus anything genuinely too in-progress to be worth promoting yet. It&#8217;s a bad place for anything you actually want a new clone to inherit.</p><h3><strong>3. User (global) memory</strong></h3><p>One level up: notes that persist across <em>every</em> workspace this tool touches, not just one folder. This is closer to &#8220;portable,&#8221; but the portability is still bounded by the machine and the local tool installation &#8212; it doesn&#8217;t travel via git, and it doesn&#8217;t follow you to a different computer on its own.</p><h3><strong>4. Repo-committed instructions: from bespoke per-tool files to </strong><code>AGENTS.md</code></h3><p>Now we leave the tool&#8217;s private state entirely and enter git. A root-level instructions file is just a file in your repository. That&#8217;s the whole trick and the whole value: it is exactly as portable as your repository. Every clone, every worktree, every fork, every collaborator gets it automatically, because getting it is identical to getting the code.</p><p>What&#8217;s actually interesting here is how this convention got to where it is. For a while, every coding-agent product invented its own bespoke filename for the same idea: <code>.github/copilot-instructions.md</code> for GitHub Copilot, <code>CLAUDE.md</code> for Claude, and so on, each vendor-specific, each requiring you to maintain a near-duplicate file if you wanted more than one tool to understand your project the same way. <code>AGENTS.md</code> is the industry noticing that pattern and converging on one shared answer instead: a single, vendor-neutral root file that an increasing number of coding-agent tools read natively, precisely so a project only has to state its rules once rather than once per tool. It&#8217;s worth treating as the <em>default</em> choice for new projects now, with tool-specific files reserved for genuinely tool-specific configuration that has no equivalent elsewhere.</p><p>This is also, as far as we could establish, the most <em>tool-agnostic</em> option on this list, full stop. Where a personal, client-specific setting might only mean something to one editor, a repo-root instructions file &#8212; especially the shared <code>AGENTS.md</code> shape &#8212; is a convention multiple coding-agent products already recognize. If a rule needs to reach every surface that might touch this project, human or automated, editor-based or CLI-based, this is where it has to live.</p><p>The tradeoff: everything in it loads into every session, every time, regardless of relevance. Fine for genuinely global rules (&#8221;here&#8217;s our stack,&#8221; &#8220;here&#8217;s our deployment model&#8221;). Wasteful if you start stuffing narrow, file-specific gotchas into it.</p><h3><strong>5. Scoped repo instructions (</strong><code>applyTo</code><strong>-matched files)</strong></h3><p>The refinement: instructions files that are still committed to git &#8212; still fully portable the same way &#8212; but tagged with a file-path pattern so they only attach to a session when you&#8217;re actually touching matching files. A rule about a date-picker bug only shows up while you&#8217;re editing that JavaScript file; a rule about log-ID discipline only shows up while you&#8217;re touching the log directories. Same portability as the root-level file, dramatically less noise.</p><p>The one thing this mechanism <em>can&#8217;t</em> do on its own is scope by <em>repository identity</em> &#8212; its matching is purely about file paths inside whatever workspace is currently open. If you need &#8220;only apply this when I&#8217;m specifically in Project X,&#8221; you need a different technique, which is exactly why the next tier needed an extra trick.</p><h3><strong>6. Personal, cross-project instructions (synced outside any repo)</strong></h3><p>This is the tier built specifically to answer: &#8220;how do I make <em>my own</em> knowledge follow <em>me</em>, across every project, on every machine I use &#8212; without it ever becoming part of any project&#8217;s git history?&#8221;</p><p>The mechanism in VS Code: a client-side setting that registers an entire folder as a source of instruction files. Point it at a folder inside a personally-synced cloud drive, and every file dropped into that folder is picked up automatically, in every workspace, the moment that client starts a session &#8212; with no per-repository setup at all, because the registration lives at the <em>user&#8217;s tool profile</em>, not inside any project.</p><p>Worth being explicit about one thing, since it&#8217;s easy to assume otherwise: there is no folder VS Code ships with for this, and no required name for it. The folder &#8212; wherever it lives, whatever it&#8217;s called &#8212; is something <em>you</em> create. The only real requirement is that it sits somewhere already synced across the devices you use, so the files themselves show up everywhere without any extra effort: OneDrive, iCloud Drive, Dropbox, or even a small private git repository you clone onto each machine all work equally well. The sync mechanism and the VS Code setting are two separate, complementary steps &#8212; the sync layer gets the <em>files</em> to every machine; the setting is what tells that one editor to actually go looking for them there.</p><p>Setting it up is a few minutes of work: create the folder anywhere convenient inside whichever synced location you already use, then point VS Code at it &#8212; either through the Settings UI (search for &#8220;instructions files locations&#8221;) or directly in your user <code>settings.json</code>:</p><pre><code><code>"chat.instructionsFilesLocations": {
  "/absolute/path/to/your/synced/folder": true
}
</code></code></pre><p>That&#8217;s the entire one-time setup. What we&#8217;ll come back to later in this post &#8212; in &#8220;The tooling&#8221; section &#8212; is <em>automatically verifying</em> that wiring is actually intact on whatever machine you&#8217;re sitting at, rather than just hoping it is.</p><p>Two details make this tier work well in practice:</p><ul><li><p>Because the folder is scanned as a whole, you don&#8217;t register files individually &#8212; drop a new file in, and it&#8217;s live next session.</p></li><li><p>Because file-path matching can&#8217;t express &#8220;only in this specific repository,&#8221; each file needs its own internal guard: a quick check for something unique to the target project (in our case, the presence of one specific committed file that only exists in this codebase) before applying anything. Get that guard wrong and personal notes meant for one project start leaking opinions into unrelated ones.</p></li></ul><p><strong>The scoping technique, concretely.</strong> The file-matching pattern this tier&#8217;s mechanism normally relies on can restrict <em>which files</em> an instruction attaches to, but it has no concept of <em>which repository</em> you&#8217;re in &#8212; a folder full of personal instructions gets offered up in every workspace, indiscriminately. The fix is to move the scoping decision out of configuration and into the instruction text itself, as a guard clause the agent is told to evaluate first, before doing anything else in that file:</p><blockquote><p><strong>Scope guard</strong>: only apply the content below if the current repository root contains <code>.github/instructions/ace-log-ids.instructions.md</code> &#8212; a file that only exists in this specific project&#8217;s checkout. If it&#8217;s absent, ignore everything below and behave normally.</p></blockquote><p>Any sufficiently unique, already-committed fingerprint works &#8212; a distinctive file path, a particular config key, a marker nobody else&#8217;s repository would plausibly have. The guard is cheap to check, doesn&#8217;t require running any external command, and turns a blanket, everywhere-applies folder into something that behaves, in practice, as if it were scoped per-project &#8212; without the underlying mechanism needing to know anything about git remotes or repository identity at all. This is the piece that makes a single, shared personal folder safe to use across many unrelated projects at once.</p><p>This tier is also, importantly, where content that should <em>never</em> touch a project&#8217;s git history belongs &#8212; real hostnames, ports, and credentials that a developer needs available every session, but that must never be committed anywhere, ever, even for a moment. More on why that &#8220;even for a moment&#8221; qualifier matters below.</p><p>The honest caveat: this specific mechanism is a feature of one particular editor&#8217;s chat client. It is not confirmed to reach a command-line agent, an asynchronous cloud-hosted agent, or any other surface that might touch the same codebase. Repo-committed content is still the only thing guaranteed to reach <em>every</em> surface. Treat this tier as a powerful supplement for one editor, not a replacement for the git-portable tiers above.</p><h3><strong>7. A structured, searchable knowledge log</strong></h3><p>Different shape entirely: a directory of individually identified, git-committed entries &#8212; one per lesson or pattern, each with its own ID, searchable, cross-referenceable from other entries and from work-tracking documents. It has the same portability as any other committed file &#8212; every clone gets every entry &#8212; but it is deliberately <strong>not</strong> ambient. Nothing injects its contents into a session automatically. An entry only helps once something, human or agent, goes looking for it on purpose.</p><p>That makes it the right home for formal incident write-ups and patterns worth indexing for later search, and the wrong home for anything that needs to silently shape behavior without being asked. It&#8217;s a library, not a whisper in your ear.</p><h3><strong>8. Skills / playbooks</strong></h3><p>Not &#8220;knowledge&#8221; in the same sense as the tiers above &#8212; more like a committed recipe an agent can be told to follow for a recurring, multi-step job. Still just files in the repository, still fully portable the same way. Their special trick in this story: you can use one to encode <em>the very discipline of managing all the other tiers</em>, so the reasoning above doesn&#8217;t have to be rediscovered from scratch next time. That&#8217;s exactly what we ended up building &#8212; more on it below.</p><h2><strong>What we tried and ruled out (so you don&#8217;t have to)</strong></h2><p>Three approaches looked promising and turned out to be dead ends, each for an instructive reason.</p><p><strong>A manual &#8220;seed&#8221; file living outside the repo.</strong> Works, technically &#8212; hand its contents to a fresh session and ask it to rebuild its own working notes from it. The problem is entirely human: it only helps if someone remembers to do it, every time, in every new clone. The moment a synced, auto-loading personal-instructions tier exists, this approach becomes strictly worse at the same job for zero benefit &#8212; so it was dropped in favor of that tier once it was clear both could achieve the same goal.</p><p><strong>A git hook that fires on clone.</strong> This one doesn&#8217;t just have rough edges &#8212; it&#8217;s not really possible. Hook scripts live in a local, unversioned directory that is never transferred by <code>git clone</code> in the first place; there is no &#8220;post-clone&#8221; moment a repository&#8217;s own content can hook into. The closest workaround (pointing git at a versioned hooks folder) still requires a one-time setting on the <em>destination</em> machine before it does anything &#8212; the identical bootstrapping problem as syncing an editor setting across machines, just relocated. It doesn&#8217;t solve anything a synced setting doesn&#8217;t already solve more simply.</p><p><strong>A git-committed snapshot of accumulated notes.</strong> This one is the subtlest trap, and the best illustration of why the three axes matter. Copying a folder of working notes into the repository and committing it absolutely achieves portability &#8212; every clone gets the exact files. But nothing makes an agent read them. A file sitting quietly in the tree, unreferenced by anything, is exactly as invisible to a fresh session as if it didn&#8217;t exist. Portable and ambient are not the same property, and this was the cleanest possible demonstration: full marks on one axis, zero on the other, and the result is still useless for the actual goal.</p><h2><strong>Sensitivity: the axis that bites hardest</strong></h2><p>Partway through this exercise, real connection details for a production server ended up briefly committed as part of an early snapshot. Nothing catastrophic &#8212; no credentials, just a hostname, a port, and a username &#8212; but it&#8217;s exactly the kind of detail that should never enter a git history, even for a moment, even in a private repository.</p><p>The fix illustrates a genuinely useful piece of git literacy: whether removing something like this is cheap or expensive depends entirely on where it sits in history, not on how you feel about it.</p><ul><li><p>If the offending commit is still the very tip of the branch, has no commits stacked on top of it, and nothing else already refers to its hash &#8212; fixing the file and re-committing in place (<code>commit --amend</code>, then a force-push of that one commit) is functionally equivalent to fixing a typo before anyone saw it. Cheap, fast, low blast-radius.</p></li><li><p>If other work has already been built on top of it, or another clone has already fetched it, the calculus changes completely: now it&#8217;s a full history rewrite, which changes every descendant commit&#8217;s identity and forces every other clone to reset or re-clone. That&#8217;s a genuinely disruptive operation, not a routine cleanup step, and it deserves to be treated with the same caution as any other destructive, hard-to-reverse action.</p></li></ul><p>The lesson generalizes past git: the real control is deciding <em>in advance</em> which tier sensitive content belongs in (the personal, never-committed tier, full stop) rather than relying on being able to clean it up after the fact.</p><h2><strong>The tooling: making the wiring itself verifiable</strong></h2><p>Knowing the personal, synced-instructions tier exists is only useful if you can trust it&#8217;s actually switched on for whatever machine you&#8217;re sitting at. That trust shouldn&#8217;t require inspecting internal application settings by hand every time you&#8217;re not sure, so three small pieces of tooling were built to make the whole chain checkable &#8212; and, where possible, automatic.</p><p><strong>The loader/checker.</strong> A small, cross-platform script that goes straight to the source: it locates the editor&#8217;s own user-level settings file (the path differs across macOS, Windows, and Linux, and the script knows all three), reads the actual registration for the personal-instructions folder &#8212; tolerating the human-readable comments that setting file allows, which a naive strict-JSON parser would choke on &#8212; and confirms that folder genuinely contains this project&#8217;s files, not just some folder, any folder. It reports a clear pass or a clear, specific fix if anything in that chain is broken.</p><p><strong>The task.</strong> That script is wired into the repository&#8217;s own task definitions with a &#8220;run automatically when this folder is opened&#8221; flag. This detail matters more than it looks: task definitions are ordinary version-controlled files, so &#8212; unlike a git hook &#8212; this check travels to every clone and every worktree automatically, with no pre-existing setup required on the destination machine at all. Open the folder, get the answer, with one small one-time permission prompt the first time.</p><p>The actual snippet is short enough to reproduce in full &#8212; it lives in <code>.vscode/tasks.json</code>, as one more entry in that file&#8217;s top-level <code>"tasks"</code> array, alongside whatever other tasks a project already defines:</p><pre><code><code>{
  "label": "Check: Personal Instructions Wiring",
  "type": "shell",
  "command": "python3",
  "args": ["${workspaceFolder}/scripts/check-personal-instructions.py"],
  "windows": {
    "command": "python",
    "args": ["${workspaceFolder}/scripts/check-personal-instructions.py"]
  },
  "runOptions": { "runOn": "folderOpen" },
  "presentation": { "reveal": "always", "panel": "dedicated", "focus": false }
}
</code></code></pre><p>Two details worth calling out: the <code>windows</code> block overrides only the interpreter command, since Windows Python installs commonly register as <code>python</code> rather than <code>python3</code> on PATH; and <code>runOptions.runOn: "folderOpen"</code> is the one flag doing all the automatic-execution work &#8212; delete just that block and the identical task still works fine, just as something you trigger manually from the command palette instead.</p><p><strong>The skill.</strong> All of the reasoning above &#8212; which tier for which kind of knowledge, how to create a new personal-instructions file correctly, how to think about the sensitivity axis, how to avoid the same fact living in two places and quietly drifting &#8212; was written down as a committed playbook the agent itself can be pointed back to. It&#8217;s a small recursive trick: use one of the portable-knowledge mechanisms to preserve the knowledge of how to use all the portable-knowledge mechanisms, so the next person (or the next session) doesn&#8217;t have to re-derive it from first principles.</p><h2><strong>Where does settings sync fit in?</strong></h2><p>One easy misconception: since the personal-instructions tier is registered by a setting, surely that setting needs to be re-created for every clone and worktree?</p><p>It doesn&#8217;t &#8212; and the reason is worth internalizing, because it&#8217;s the same shape as the memory-tool problem from the opposite direction. The registration lives at the level of the <em>editor&#8217;s user profile</em>, not at the level of any individual folder. Once it&#8217;s set, it already applies to literally every folder that profile ever opens, on that machine &#8212; including clones and worktrees that don&#8217;t exist yet. There is nothing to replicate per-checkout, because it was never attached to a checkout in the first place.</p><p>The one place replication genuinely matters is a <em>different machine</em> &#8212; a second laptop, a rebuilt environment, a colleague&#8217;s setup. That&#8217;s precisely what an editor&#8217;s built-in settings-sync feature exists to solve: turn it on once, signed into the same account, and that same registration follows you to anywhere else you sign in. The one wrinkle worth knowing: if the registered path is written in one operating system&#8217;s path syntax, syncing the raw setting to a different operating system carries over the text but not its meaning &#8212; you&#8217;ll still need to point it at wherever your synced folder actually lands on that platform. Sync solves <em>replication</em>; it doesn&#8217;t solve <em>translation</em>.</p><h2><strong>The cheat sheet</strong></h2><p>StoreTravels to...Shows up automatically?Lives in git?Best forSession memoryNowhere (this conversation only)Yes, this conversationNoIn-progress scratch stateRepo/workspace memoryNowhere &#8212; one folder path, one machineYes, in that folderNoA working index; pointers to the real sourceUser (global) memoryEvery workspace, one machineYesNoPersonal habits/preferences, this machineRoot instructions file (<code>copilot-instructions.md</code> / <code>AGENTS.md</code>)Every clone/fork/worktreeYes, alwaysYesGlobal, always-relevant project rules; the most tool-agnostic optionScoped instructions (<code>applyTo</code>)Every clone/fork/worktreeYes, when matching files are touchedYesNarrow, file-specific standing rulesPersonal synced instructionsEvery workspace, this editor, any machine you sync toYes, gated by a manual identity checkNoPersonal cross-project knowledge; anything too sensitive to commitStructured knowledge logEvery clone/fork/worktreeNo &#8212; search onlyYesFormal, indexed incident/pattern recordsSkills/playbooksEvery clone/fork/worktreeNo &#8212; invoked on requestYesMulti-step procedures worth never re-deriving from scratch</p><h2><strong>The takeaway</strong></h2><p>There&#8217;s no single &#8220;memory&#8221; to fix. There are (at least) eight places knowledge can live, three independent questions to ask about each piece of it &#8212; does it travel, does it show up unasked, is it safe to commit &#8212; and the entire discipline is just answering those three questions honestly before you decide where something goes. Do that consistently, and a brand-new clone, a brand-new worktree, or a brand-new machine stops being a blank slate and starts being exactly as capable as the one you were already working in.</p><h2><strong>The ask for you</strong></h2><p>As flagged up top, everything specific in this post &#8212; the settings, the folder-scanning behavior, the auto-run task &#8212; is VS Code and GitHub Copilot Chat territory. The three-axes framework (does it travel, does it show up unasked, is it safe to commit) should hold regardless of which coding agent you use, but the actual knobs almost certainly look different in every other <strong>agent harness</strong> &#8212; the surrounding tool/runtime that wires a model up with context, tools, and memory, as distinct from the model itself. GitHub Copilot CLI, Claude Code, and every other harness out there each make their own choices about what&#8217;s ambient, what&#8217;s portable, and what&#8217;s user-scoped versus project-scoped, and those choices are worth knowing before you assume a technique from one transfers cleanly to another.</p><p>If you&#8217;ve solved this problem in a different harness &#8212; a CLI tool, a different editor, a cloud-hosted agent &#8212; I&#8217;d genuinely like to hear how. What&#8217;s the equivalent of a fingerprint-guarded personal folder in your setup? Is there an <code>AGENTS.md</code>-style convention your harness treats specially? How do you keep sensitive details out of a repository while still making them available every session? Share what&#8217;s worked (and what hasn&#8217;t) &#8212; this space is moving fast enough that the best techniques are still being worked out in public, one repository at a time.</p><h2>Resources and discussion</h2><p>You can find the samples for this article in my <a href="https://github.com/DanHolme/Samples">Samples repo on GitHub</a>.</p><p>You can discover more and join the conversation on <a href="/__u/danholme.substack.com/">Substack</a>, <a href="https://www.linkedin.com/in/holmedan/recent-activity/articles/">LinkedIn</a>, or <a href="https://github.com/DanHolme">GitHub</a>. </p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Innovation Technology &amp; People! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[PowerPoint's #1 problem SOLVED with 1 Copilot prompt]]></title><description><![CDATA[From template hell to sizzlin' slide heaven]]></description><link>https://danholme.substack.com/p/powerpoints-1-problem-solved-with</link><guid isPermaLink="false">https://danholme.substack.com/p/powerpoints-1-problem-solved-with</guid><dc:creator><![CDATA[Dan Holme]]></dc:creator><pubDate>Mon, 01 Jun 2026 22:38:35 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!hQPI!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>I never thought I&#8217;d see the day when the #1 pain point of working with PowerPoint in a group of people, let alone a large organization like Microsoft, would be solvable. On Saturday, I helped a customer work through the problem, applying Copilot in PowerPoint with the latest models. Let me share how we approached the solution, and ask you to crowdsource improvements by contributing.</p><p>The approach was <em>not</em> fancy. But the result was so good that, over time, I&#8217;ll iterate and improve the prompt</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Innovation Technology &amp; People! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!hQPI!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!hQPI!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png 424w, /__u/substackcdn.com/image/fetch/$s_!hQPI!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png 848w, /__u/substackcdn.com/image/fetch/$s_!hQPI!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png 1272w, /__u/substackcdn.com/image/fetch/$s_!hQPI!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!hQPI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png" width="1456" height="971" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/c588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:971,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:292524,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:&quot;https://danholme.substack.com/i/200198620?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!hQPI!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png 424w, /__u/substackcdn.com/image/fetch/$s_!hQPI!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png 848w, /__u/substackcdn.com/image/fetch/$s_!hQPI!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png 1272w, /__u/substackcdn.com/image/fetch/$s_!hQPI!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc588d570-20ff-4468-9409-9757400ed6b3_1536x1024.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2><strong>The problem: Template and formatting hell</strong></h2><p>I know a lot of you already know exactly what I&#8217;m about to say in this section. If by reading the headline alone, you already fully understand and relate to the problem space, skip to the next section.</p><p>PowerPoint&#8217;s most powerful features--masters, layouts, themes, and color palettes--are also the leading cause of frustration for anyone who works in PowerPoint, particularly people who assemble presentations from slides that have been created using other decks (which have their own collections of masters, layouts, themes...).</p><p>As you assemble a deck from multiple sources, you have a Sophie&#8217;s Choice to make: &#8220;Paste and use destination theme&#8221; which blows up the formatting of the slides you&#8217;re bringing in to your deck; or &#8220;Paste and keep source formatting&#8221;, which ends up making your deck look exactly what it is: a Frankensteined patchwork of disconnected slides. No matter which choice you make, if you want to deliver a coherent and consistently designed presentation, you&#8217;re likely going to be spending a lot of time doing manual formatting to reconcile differences.</p><h2><strong>My customer&#8217;s particularly hellish hell</strong></h2><p>The impetus for this solution was a customer who creates online learning for medical professionals using presentations from professional conferences. So, these are decks created by doctors. Let&#8217;s just say...</p><blockquote><p>I&#8217;m a doctor, Jim! Not a PowerPoint expert!</p></blockquote><p>Yeah: the source decks were beyond tragic. To date, it has been a mammoth, lengthy process to manually reformat each deck into something that looks as professional as the content; and that aligns with the high design standards for all courses the online learning portal.</p><h2><strong>How we approached building the solution</strong></h2><p>We spent approximately two hours building the first version of the solution using Copilot in PowerPoint. At the Microsoft 365 Community Conference, I was lucky enough to be recruited to demo Copilot in PowerPoint for Jeff Teper&#8217;s keynote and, from doing so, had a sense that the technology might finally be up to the task.</p><p>First step was manual: We opened one of the ultra-messy &#8220;doctor decks&#8221; and added a <strong>slide master</strong> that reflected the desired look-and-feel with <strong>layouts</strong> that reflected common layouts used in doctor decks. This represented our <strong>target formatting</strong>.</p><p>The end-goal here was to <strong>convert a sloppy slide into a sizzing slide</strong>, with as much automation as possible. But, particularly during iterative development of our automation, we wanted to preserve the original for reference, so we could compare the original to the target slide.</p><p>So, the first prompt we tried asked copilot to look at a single slide, duplicate it (to preserve the original) and, on the copy, to <strong>visually examine the source slide and identify the target layout that best reflected the intent of the author</strong>. This is important because, often, people will create slides in wonky workflows, for example starting with a blank slide and dropping text boxes for the slide title and bullet points, instead of using a layout with title and content placeholders. By considering the intent of the slide, rather than the specific way it was created, we can remove that variance.</p><p>The prompt also instruced to <strong>apply that layout and reset the slide</strong>. PowerPoint&#8217;s &#8220;reset&#8221; action removes directly applied formatting including positioning, sizing, and font formats. It effectively snaps the slide to the formatting of the layout.</p><p>We executed the prompt on several slides and WOW! we were very impressed by the accuracy of Copilot&#8217;s choices.</p><p>The next step was to try to reflect the author&#8217;s <strong>intent regarding text placement</strong>. Far too many PowerPoint creators will create text with &#8216;extra lines&#8217; between paragraphs (&#8221;Hit twice&#8221;) to create whitespace between points. For our doctors&#8217; slides, they might put a citation at the bottom of the slide by pressing enter 10+ times until the text was at the bottom (ugh!).</p><p>Our slide master had proper line spacing (using the Line Spacing command; adding space before and/or after). We prompted to <strong>examine text spacing and the intent of the author</strong>. If the whitespace was &#8220;one line&#8221;, remove any extra line breaks. If the intent seemed to be to <strong>position the text somewhere specific</strong>, like the bottom of the slide, then position it correctly, accordingly.</p><p>Next was the <strong>text formatting itself: font size, typeface, color, emphasis (bold, italic, underline, highlight)</strong>. And OMG these doctors&#8217; slides used every combination under the sun, sometimes on a single slide. The &#8220;reset formatting&#8221; already removed all formatting, resetting it to the fonts in the layout and theme. Now we had to reapply formatting thoughtfully, again based on the intent of the author.</p><p>We landed on this as our first approach:</p><ul><li><p>For font size, if the source slide had text in a significantly different size from other text at the same outline level, reflect that in the target under the assumption it is intentional.</p></li><li><p>If an entire paragraph is formatted uniquely, do not reapply the formatting. Keep the paragraph aligned to the layout and theme. This resolved variances where, for example, a slide might have a patient story in itialics that wasn&#8217;t the standard for the online course.</p></li><li><p>But if text within a paragraph was bold, italic, or underline, we reapplied the formatting to preserve it.</p></li><li><p>If text was colorized, either a font color or a hilight color, we standardized it to a single font color.</p></li></ul><p>Next was images. The target design had a slide background that was not pure white. That means that any image of a screenshot or a journal article (anything with a white background) will create a hard visual edge against the background. So, we <strong>added drop shadows to all images</strong>.</p><p>Finally, citations, which there are a lot of in this customer&#8217;s source decks. The customer does not want full citations visible on the slides during the course but rather references on slides with citations centralized to an appendix slide. Problem: every author uses a different format, placement, etc. Individual authors even applied different formats for citations on different slides. So, we visually <strong>look for anything that is a citation</strong> and move it off the screen. The customer has since updated the skill to create an appendix with each citation and references.</p><p>With these instructions, so far, we were already well on our way to saving our customer hours of work per deck.</p><h2><strong>ProTip: Agent logging and learning</strong></h2><p>As we tested each improved prompt, we could see in Copilot&#8217;s response how it thought about the prompt, how it applied the instructions, and how it evaluated the results. We fed the learning into each subsequent revision to the prompt. But as we readied ourselves for Copilot to iterate over multiple slides--even an entire deck--we would lose that learning.</p><p>We added to our prompt an instruction that Copilot <strong>add a text box, off to the side of the slide (outside the visible area), and log what it did and why</strong>: which layout it picked, which formatting it reset, and which formatting it reappplied. That way, when the agent completed its work, and we were comparing the original slides to the target slides, <strong>if something wasn&#8217;t quite right we could learn why, improve the prompt accordingly, and retry</strong> the prompt on the same source slide.</p><p>Through this, the system became, in a way, <strong>self-aware and self-improving</strong> with a little help from Copilot&#8217;s human companions.</p><h2><strong>What&#8217;s next</strong></h2><p>This will be an <strong>iterative process of learning from the agent&#8217;s output, finding the next set of gaps and variances, improving the prompt, and trying again</strong>. With this particular scenario, it&#8217;s hard to imagine an agent making 100% perfect choices every time because far too many people (doctors, not PowerPoint experts) are involved. But we can prioritize where to invest in improvements and get closer each run.</p><p>At this point, we have a massive prompt that works quite well&#8212;nay, surprisingly well. There is not yet a good way to <strong>turn this into a replicable automation</strong> (e.g. a &#8220;skill&#8221; for Copilot in PowerPoint). Any ideas??</p><p>One of the areas for rich improvement will be <strong>color choice for text and graphics</strong>. PowerPoint non-experts don&#8217;t realize that accent colors are dynamic, based on the theme. Accent Color 3 might be red in your current master, but blue in the new master. All text you formatted in red using Accent Color 3 will now be blue after applying the new master. That&#8217;s probably the right choice for most body text. But if you&#8217;ve created a stop sign shape using an octagon shape with red fill (Accent color 3) and text &#8220;Stop&#8221; that is white (Text 1), you could end up with a blue stop sign with black text in your new formatting. We will build logic that evaluates whether the intent of the author was a specific color, in which case the correct action would be to apply red as a proper color, not a theme color.</p><p>And we will tackle <strong>modern formatting, including rounded corners</strong>. PowerPoint&#8217;s UX doesn&#8217;t expose rounded corner radius and, generally, designers won&#8217;t want the same radius applied to a box the size of the slide itself and for a box that&#8217;s a fraction of the slide&#8217;s area. But agents can access the setting!</p><p>Automating <strong>intelligent visual element usage</strong>. Think of how many marketing slides have a date statement like &#8220;Coming &#8220;. Now think about how many different ways that information is visually coveyed in a single deck. Copilot can recognize date statements and treat them all the same way within a deck.</p><p>What ideas do you have? Share them in the replies!</p><h2><strong>Copy the solution for your work</strong></h2><p>I&#8217;m sharing the prompt, in its entirety, below. This was the result of only two hours of learning; and there is much more room for improvement.</p><p><strong>The &#8220;deal&#8221; is if you copy it, you contribute to it.</strong></p><h2><strong>Prerequisite</strong></h2><p>You must have a <strong>slide master with layouts</strong> that approximate the types of layouts source slides might have. The more aligned your layouts are to the source material, the more accurate that early step of identifying the best layout will be, and the less &#8220;tweaking&#8221; you&#8217;ll have to do later.</p><p>The prompt below assumes you have already <strong>added the target master to the source deck</strong>. There are several ways to do this. One is to copy any slide from the target deck, paste into the source deck and choose &#8220;Keep Source Formatting&#8221;. <strong>Rename the master &#8220;TARGET&#8221;</strong> (or change the reference in the prompt). You could also work on the prompt to load from the target master template directly, for example by providing a link to the .potx or .pptx.</p><p>The most important thing for this process: layouts with placeholders and relative font sizes. Everything else can be easily modified later. I will loop back here and share my favorite masters and layouts with you.</p><h2><strong>The prompt</strong></h2><p>The prompt (v1) is below. Contribute your ideas in the comments or, if you have Git skills, through my<strong><a href="https://github.com/DanHolme/powerpoint-tools"> powerpoint-tools repo</a></strong>.</p><pre><code><code>We are working together to improve the design and layout of this presentation and to standardize formatting using the slide master called "TARGET". 

We'll work one slide at a time. Preserve a copy of the original slide, duplicate it, and work on the duplicated slide.

Visually examine the slide and determine which layout from the "TARGET" master best suits this slide. Apply that layout and reset the slide. 

After reset, we will apply direct formatting using visual comparison of the original and newly reset slide. The goal of this step is to create a visual hierarchy on the new slide that reflects the intent of the original.

Use these rules:

- If text on the source slide has italics, underline or bold, and it is a subset of the text in the paragraph or item, maintain the formatting. If it is the entire paragraph, do not.

- If the source slide has text with a noticeably smaller font size, that is usually intentional and we should apply a smaller font size after resetting the slide.  

- If the source slide has text that is &#8216;called out&#8217; visually, for example with a highlight or font color, apply the following direct formatting to the text: font color is dark red.

- If a slide has white space between paragraphs that looks close to a line (or less) worth of space, do not add a blank paragraph. Layout line spacing formats will take care of that.

- If a slide has text with significant white space between items--something that visually looks like "more than one line of space"--we should try to understand the intent and replicate it on the new slide. Is the intent to create more visual break between peer points; or is it to align the text to a specific position on the slide (like the bottom)

- Any image placeholder should be formatted with a drop shadow and 8 pixel rounded corners.

If a slide has something that appears to be a citation, please do the following:
- Create a text placeholder just off the BOTTOM of the slide, OUTSIDE the slide itself
- The font should be the (body) font at 10pt, font color black 
- Move the citation text into that placeholder, preserving bold, italic and underline but removing any original font face or size.

If the source slide had text or graphic elements, work to ensure the new slide remains true to the intent of the positioning of those elements. 

After you have finished applying direct formatting:
- Create a text placeholder just outside the slide on the right.
- Font should be (body) font at 10pt, font color black
- Enter the first line of text: &#8220;Copilot Formatting&#8221;
- Then enter text explaining your thinking about the slide: Which master layout you picked and why; what direct formatting you ignored because the slide layout already accomplished the intent of the original slide; and what direct formatting you reapplied and why.</code></code></pre><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Innovation Technology &amp; People! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[Announcing storyline in Microsoft Teams]]></title><description><![CDATA[I&#8217;m thrilled to share the news that we&#8217;re integrating storyline into Microsoft Teams!]]></description><link>https://danholme.substack.com/p/announcing-storyline-in-microsoft</link><guid isPermaLink="false">https://danholme.substack.com/p/announcing-storyline-in-microsoft</guid><dc:creator><![CDATA[Dan Holme]]></dc:creator><pubDate>Tue, 19 Nov 2024 22:05:33 GMT</pubDate><enclosure url="https://substackcdn.com/image/youtube/w_728,c_limit/YlBMEgEwBLE" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>I&#8217;m thrilled to share the news that we&#8217;re integrating storyline into Microsoft Teams! Storyline enables leaders to reach and engage their audience across Teams, Outlook, and Engage; and enables everyone to share updates, perspectives, and ideas with followers and coworkers across your organization.</p><div id="youtube2-YlBMEgEwBLE" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;YlBMEgEwBLE&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/YlBMEgEwBLE?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><p>Landing in early 2025 for all Microsoft 365 commercial customers (leader &amp; audience features for Viva customers).</p><p>Two years after the general availability of storyline in Viva Engage, we've seen tremendous adoption from both leaders and communicators as well as information workers and FLWs. Bringing storyline into Teams as a native feature will unlock storyline's superpowers for communication and connection to the hundreds of millions of Teams customers.</p><p>Importantly, storyline in Teams is the same feature as Engage. What you share on your storyline from either, shows up in both. This is an integration, not a replacement or a duplicate feature.</p><p>We also signaled in our blog post that community integration and much more is coming. Importantly, Engage is not going away--it will remain offering web, desktop, and mobile apps, and store apps ("metaOS") for Outlook and Teams. But we're bringing the products closer together in Teams, so that Teams customers can leverage the superpowers of Engage for communicating, engaging employees, and sharing knowledge at scale. This is nothing but a small step for storyline toward a giant leap for Engage and Teams customers. We've got so much coming in 2025, I'm giddy! Can't wait to share the new and the journey with you!</p><p>Read the announcement at <a href="https://techcommunity.microsoft.com/blog/viva_engage_blog/what%E2%80%99s-new-in-viva-engage-%E2%80%93-ignite-edition/4299865">https://techcommunity.microsoft.com/blog/viva_engage_blog/what%E2%80%99s-new-in-viva-engage-%E2%80%93-ignite-edition/4299865</a></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Innovation Technology &amp; People! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[Viva Engage features for leaders, communicators and employees]]></title><description><![CDATA[On February 13, 2023, Microsoft Viva Engage released features for leadership engagement, employee communications, and knowledge sharing across the organization]]></description><link>https://danholme.substack.com/p/viva-engage-features-for-leaders</link><guid isPermaLink="false">https://danholme.substack.com/p/viva-engage-features-for-leaders</guid><dc:creator><![CDATA[Dan Holme]]></dc:creator><pubDate>Mon, 13 Feb 2023 22:10:13 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>FAQ: What features does Viva Engage offer for Microsoft Viva customers to improve leadership engagement, employee communications, and knowledge sharing?</strong></p><p>Viva Engage brings people together across the organization to connect with leaders and coworkers, find answers to questions, share their unique story, and find belonging at work. Today, we are rolling out new features for Microsoft Viva customers that empower leaders and employees to connect, communicate, and engage more effectively, and enable everyone to find answers and experts across the organization.</p><p>This article will provide an overview of seven new features:</p><ol><li><p>Leaders and audiences</p></li><li><p>Personal and audience analytics for leaders</p></li><li><p>Storyline announcements and posts for leaders</p></li><li><p>Leadership corner</p></li><li><p>Ask-me-anything events (AMAs)</p></li><li><p>Social campaigns</p></li><li><p>Answers in Viva</p></li></ol><p>Future articles will go into more depth about individual features, best practices and learnings from customers.</p><div><hr></div><p>If you&#8217;re not familiar with Viva Engage, would like to explore the features available to Microsoft 365 customers at no additional cost, or want to know more about the plans we announced today to rebrand remaining Yammer experiences to Viva Engage, you can learn more about <a href="/__u/danholme.substack.com/p/yammer-is-engaged-get-to-know-viva">Viva Engage in Microsoft 365</a>.</p><div><hr></div><h2>ENGAGING LEADERS AND EMPLOYEES</h2><p>Viva Engage unlocks superpowers for leaders and employees to engage more effectively.</p><h3>1. Leaders and audiences</h3><p>The first, foundational step is to define leaders and their audiences. As a leader, your audience reflects the employees that will see your posts and announcements.  And you will get rich analytics into your audience&#8217;s engagement and sentiment (more on that, later).</p><p>From the new Viva Engage admin center, you can identify a leader and configure their audience. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!nnJ0!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!nnJ0!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png 424w, /__u/substackcdn.com/image/fetch/$s_!nnJ0!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png 848w, /__u/substackcdn.com/image/fetch/$s_!nnJ0!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png 1272w, /__u/substackcdn.com/image/fetch/$s_!nnJ0!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!nnJ0!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png" width="1456" height="921" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:921,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:586565,&quot;alt&quot;:&quot;Screenshot of the Manage Audiences experience in Viva Engage&quot;,&quot;title&quot;:&quot;Screenshot of the Manage Audiences experience in Viva Engage&quot;,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Screenshot of the Manage Audiences experience in Viva Engage" title="Screenshot of the Manage Audiences experience in Viva Engage" srcset="/__u/substackcdn.com/image/fetch/$s_!nnJ0!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png 424w, /__u/substackcdn.com/image/fetch/$s_!nnJ0!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png 848w, /__u/substackcdn.com/image/fetch/$s_!nnJ0!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png 1272w, /__u/substackcdn.com/image/fetch/$s_!nnJ0!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93b635fc-31ae-418b-8a6e-a330ea95dc30_2938x1858.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Define a leader&#8217;s audience by adding one or more groups or users</figcaption></figure></div><p>Audiences are based on Azure AD groups and users. Most customers already have distribution groups they use to send email communications. Those same groups can now be used to define audiences in Viva Engage.</p><p>A leader can optionally be given an &#8220;entire organization&#8221; audience, which allows the leader to reach every user in the organization.</p><h4>FAQ: Leaders and audiences</h4><ul><li><p><strong>What types of groups can be used for audiences? </strong>Today, you can add security or distribution groups to a leader&#8217;s audience. Soon, you will be able to use a Microsoft 365 group as the leader&#8217;s audience, and we will add support for dynamic groups. </p></li><li><p><strong>Are audiences kept up-to-date automatically? </strong>Changes to group memberships automatically update the audience within 24 hours.</p></li><li><p><strong>Who can add leaders? </strong>Viva Engage admins and corporate communicators can add leaders.</p></li><li><p><strong>Who can define audiences? </strong>Viva Engage admins and corporate communicators can define audiences for any leader. The leader and their delegate managers can define the audience for that leader.</p></li><li><p><strong>What else do I need to know? </strong>When you define a custom audience by adding one or more groups or users, Viva Engage creates a security group in Azure AD, into which members are nested. Do not alter that group or its membership directly&#8212;use the Manage Audience experience to configure the audience.</p></li></ul><h3>2. Personal and audience analytics for leaders</h3><p>Analytics empower leaders to know where they can engage with greatest impact.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!BEGS!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!BEGS!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png 424w, /__u/substackcdn.com/image/fetch/$s_!BEGS!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png 848w, /__u/substackcdn.com/image/fetch/$s_!BEGS!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png 1272w, /__u/substackcdn.com/image/fetch/$s_!BEGS!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!BEGS!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png" width="1456" height="920" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:920,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:201598,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="/__u/substackcdn.com/image/fetch/$s_!BEGS!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png 424w, /__u/substackcdn.com/image/fetch/$s_!BEGS!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png 848w, /__u/substackcdn.com/image/fetch/$s_!BEGS!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png 1272w, /__u/substackcdn.com/image/fetch/$s_!BEGS!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F321cb73f-0eca-4dcf-88d0-4d0588559daa_1470x929.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Analytics provide insights into reach and engagement, as well as audience sentiment and themes</figcaption></figure></div><p>Viva Engage introduces rich, actionable analytics including:</p><ul><li><p><strong>Personal analytics. </strong>Understand the reach and engagement of your posts and activity.</p></li><li><p><strong>Audience analytics and sentiment. </strong>Aggregated, privacy-protected insights surface sentiment trends and themes of conversations across Viva Engage. Sentiment analysis uses Azure Cognitive Services to understand what&#8217;s being talked about in public conversations. Along with views of top discussions and trending content, and of adoption and activity in your audience, you can identify opportunities to engage effectively.</p></li></ul><p>In addition, leaders and communicators will benefit from conversation insights, campaign analytics, and answers analytics, detailed later.</p><h3>3. Storyline announcements and posts for leaders</h3><p>Viva Engage empowers leaders to communicate effectively and reach and engage employees in the apps they use every day. Posts and announcements can be created by leaders or their delegates, and will appear across Microsoft Viva and Microsoft 365:</p><ul><li><p>Email (inbox), Teams (activity), and the inbox in Viva Engage and Yammer</p></li><li><p>Viva Engage: the home feed, storylines feed and leadership corner </p></li><li><p>Mobile notifications: iOS and Android</p></li><li><p>Viva Connections: the company feed </p></li><li><p>SharePoint intranets: the company feed and Yammer web parts</p></li><li><p>Custom applications: Yammer embed</p></li></ul><p>Announcements enable you to share need-to-know information with employees. From your storyline, you can create announcements that are sent from you to your audience across Outlook, Teams, Yammer and Viva Engage. Announcements can include video and photos and support reactions and comments to foster two-way dialogue. Conversation insights provide analytics to help you measure and improve reach and engagement.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!BbkJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94e56695-6576-4d76-87db-c3f703483983_1176x958.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!BbkJ!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94e56695-6576-4d76-87db-c3f703483983_1176x958.png 424w, /__u/substackcdn.com/image/fetch/$s_!BbkJ!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94e56695-6576-4d76-87db-c3f703483983_1176x958.png 848w, /__u/substackcdn.com/image/fetch/$s_!BbkJ!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94e56695-6576-4d76-87db-c3f703483983_1176x958.png 1272w, /__u/substackcdn.com/image/fetch/$s_!BbkJ!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94e56695-6576-4d76-87db-c3f703483983_1176x958.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!BbkJ!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94e56695-6576-4d76-87db-c3f703483983_1176x958.png" width="1176" height="958" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/94e56695-6576-4d76-87db-c3f703483983_1176x958.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:958,&quot;width&quot;:1176,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:89468,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!BbkJ!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94e56695-6576-4d76-87db-c3f703483983_1176x958.png 424w, /__u/substackcdn.com/image/fetch/$s_!BbkJ!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94e56695-6576-4d76-87db-c3f703483983_1176x958.png 848w, /__u/substackcdn.com/image/fetch/$s_!BbkJ!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94e56695-6576-4d76-87db-c3f703483983_1176x958.png 1272w, /__u/substackcdn.com/image/fetch/$s_!BbkJ!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94e56695-6576-4d76-87db-c3f703483983_1176x958.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>If you want to share less critical updates, thoughts or vision with your audience, you can share as a storyline post. A post will not interrupt your audience with a dedicated email or notification. Instead, it will show up in feeds so your audience will see your post over time. If someone misses your post, they&#8217;ll likely see it in the storylines update&#8212;a weekly digest sent in email and Teams. This digest rolls up the most relevant content from your leaders and people you follow.</p><p>Storyline announcements and posts are visible on your storyline, and can be recommended to people outside your audience, extending the reach and impact of your communications. People who find your content valuable can follow you and choose to receive notifications when you share new content. </p><p>Viva Engage uniquely equips leaders and communicators with a range of options for reaching and engaging your audience&#8212;from critical updates that need to reach people immediately wherever they work, to less critical information that can be consumed more ambiently, on people&#8217;s own time. And Viva Engage uniquely gives leaders and communicators multi-channel reach and analytics. Together, these differentiators enable you to modernize your communications and engagement strategy&#8212;a topic we&#8217;ll definitely return to in this Substack.</p><h3>4. Leadership corner</h3><p>Leadership corner brings together leadership experiences across Viva Engage, empowering leaders and employees to connect and engage directly and effectively. </p><p>Leadership corner is an employee&#8217;s personalized hub, aggregating content and experiences related to your leaders based on the audiences you're in and the leaders you choose to follow. </p><p>You&#8217;ll see leaders&#8217; posts and announcements across storylines and communities, so you can catch up with what&#8217;s top-of-mind. And you can engage in two-way dialogue with leaders, share questions and ideas in Ask-Me-Anything (AMA) events, and participate in social campaigns to drive business initiatives.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!uGbU!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!uGbU!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png 424w, /__u/substackcdn.com/image/fetch/$s_!uGbU!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png 848w, /__u/substackcdn.com/image/fetch/$s_!uGbU!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png 1272w, /__u/substackcdn.com/image/fetch/$s_!uGbU!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!uGbU!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png" width="1456" height="920" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/fcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:920,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:690459,&quot;alt&quot;:&quot;Screenshot of leadership corner in Viva Engage&quot;,&quot;title&quot;:&quot;Screenshot of leadership corner in Viva Engage&quot;,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Screenshot of leadership corner in Viva Engage" title="Screenshot of leadership corner in Viva Engage" srcset="/__u/substackcdn.com/image/fetch/$s_!uGbU!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png 424w, /__u/substackcdn.com/image/fetch/$s_!uGbU!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png 848w, /__u/substackcdn.com/image/fetch/$s_!uGbU!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png 1272w, /__u/substackcdn.com/image/fetch/$s_!uGbU!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffcfc2a3c-36ba-4805-b928-2a990a42d270_1470x929.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Leadership corner is an employee&#8217;s personalized hub to catch up and engage with their leaders</figcaption></figure></div><h3>5. Ask-me-anything events (AMAs)</h3><p>Ask-me-anything events (AMAs) empower employees to share questions, concerns and ideas, and for leaders to listen to, learn from, and create clarity for employees.</p><p>An AMA is an asynchronous (not &#8220;live&#8221;), chat-based question-and-answer experience. AMAs are moderated, so organizers can determine which questions are publicly visible. Participants can upvote questions to help organizers prioritize. Participants and organizers can comment and answer, and the best answer can be flagged to showcase and preserve knowledge.</p><p>Optionally, an AMA can allow anonymous submission to create a psychologically safe space for people to share their thoughts and perspectives.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!Cfil!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!Cfil!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png 424w, /__u/substackcdn.com/image/fetch/$s_!Cfil!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png 848w, /__u/substackcdn.com/image/fetch/$s_!Cfil!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Cfil!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!Cfil!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png" width="1456" height="920" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:920,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:324701,&quot;alt&quot;:&quot;Screenshot of an ask-me-anything event (AMA) in Viva Engage&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Screenshot of an ask-me-anything event (AMA) in Viva Engage" title="Screenshot of an ask-me-anything event (AMA) in Viva Engage" srcset="/__u/substackcdn.com/image/fetch/$s_!Cfil!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png 424w, /__u/substackcdn.com/image/fetch/$s_!Cfil!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png 848w, /__u/substackcdn.com/image/fetch/$s_!Cfil!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Cfil!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4a3f57d-88c9-4f79-a2d8-7f0333cd82d5_1470x929.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Ask me anything events (AMAs) engage employees to share questions, feedback and ideas around one or more topics</figcaption></figure></div><p>AMAs are asynchronous (not &#8220;live&#8221;) and therefore complement the Q&amp;A capabilities of Teams meetings, which are also powered by Viva Engage. If you&#8217;re going to get people together, at the same time, Q&amp;A can be a powerful addition to any Teams meeting. AMAs allow you to schedule a Q&amp;A event over a period of hours or days to be inclusive of people&#8217;s schedules and time zones.</p><p>Any employee can create an AMA event from their storyline. AMAs created by leaders will appear in leadership corner for people in their audience.</p><h3>6. Social campaigns</h3><p>Social campaigns spark employee participation in initiatives that support business goals and objectives including diversity initiatives, cultural moments, shared learning and ideation. </p><p>Campaigns are centered around a hashtag. Any employee can participate by sharing a post or question with the campaign hashtag.</p><p>Each campaign features a rich landing page with a cover photo, a visual goal tracker, campaign sponsors, and contributors. The campaign feed aggregates conversations across storylines and communities. Campaign owners can measure reach and engagement with analytics.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!jkFr!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!jkFr!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png 424w, /__u/substackcdn.com/image/fetch/$s_!jkFr!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png 848w, /__u/substackcdn.com/image/fetch/$s_!jkFr!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png 1272w, /__u/substackcdn.com/image/fetch/$s_!jkFr!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!jkFr!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png" width="1456" height="920" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:920,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:535099,&quot;alt&quot;:&quot;Screenshot of a campaign page in Viva Engage&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Screenshot of a campaign page in Viva Engage" title="Screenshot of a campaign page in Viva Engage" srcset="/__u/substackcdn.com/image/fetch/$s_!jkFr!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png 424w, /__u/substackcdn.com/image/fetch/$s_!jkFr!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png 848w, /__u/substackcdn.com/image/fetch/$s_!jkFr!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png 1272w, /__u/substackcdn.com/image/fetch/$s_!jkFr!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F83de8219-44f4-4d41-b2cc-f9fc3766cadc_1470x929.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Social campaigns feature a landing page that aggregates posts with the campaign hashtag from across communities and storylines</figcaption></figure></div><p>Campaign analytics help you understand the reach, engagement, and contribution profile of your social campaigns. Identify and praise top contributors and summarize campaign impact.</p><h2>SHARE KNOWLEDGE, ANSWERS &amp; IDEAS</h2><p>Viva Engage empowers people to share best practices, solicit feedback, and innovate together in communities. Now, we&#8217;re doing even more to unlock the power of collective knowledge, so you can crowdsource answers from experts across the organization.</p><h3>7. Answers in Viva</h3><p>Answers in Viva enables people to ask questions and find answers quickly and effectively by leveraging the combined superpowers of social Q&amp;A, AI, and experts.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!vng8!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!vng8!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png 424w, /__u/substackcdn.com/image/fetch/$s_!vng8!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png 848w, /__u/substackcdn.com/image/fetch/$s_!vng8!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png 1272w, /__u/substackcdn.com/image/fetch/$s_!vng8!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!vng8!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png" width="1456" height="922" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:922,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:448847,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!vng8!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png 424w, /__u/substackcdn.com/image/fetch/$s_!vng8!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png 848w, /__u/substackcdn.com/image/fetch/$s_!vng8!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png 1272w, /__u/substackcdn.com/image/fetch/$s_!vng8!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99206f69-52d2-4ce6-b27f-397a031050a4_1472x932.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>Begin by asking a question. AI will recommend previous questions that have answers or, if none meets your needs, AI will route your question automatically to an expert on the topic. People active in the topic are notified that there is a new question they may be able to help with. </p><p>You discover questions they you can help out with in the personalized Questions for You feed. Answers can be upvoted and marked &#8220;best answer&#8221;. And, of course, the answer can be recommended the next time a similar question is asked.</p><p>Topics are one of the foundational superpowers of Answers in Viva. Questions are tagged with one or more topics, and people can view and follow interesting topics. Viva Engage topics are powered by Viva Topics. And while it is not necessary to fully deploy Viva Topics experiences to support Answers, customers will benefit from Viva Topics integrations with Answers, including topic pages that provide views of a topic&#8217;s resources and experts.</p><p>When you answer a question, you can earn badges. And answers analytics enable you to measure the impact you&#8217;ve driven by asking and answering questions. You can identify the most helpful questions you&#8217;ve asked, and the most valuable answers you&#8217;ve provided.</p><p>Admins can use global answers analytics<strong> </strong>to evaluate the impact of Answers in Viva across the organization. Identify popular topics, active experts, helpful questions and answers, and questions that need attention.</p><h2>GETTING THE NEW FEATURES</h2><p>The features described here are rolling out, starting today, and will arrive in customers&#8217; tenants over the coming few weeks. </p><h3>Licensing</h3><p>Administrators will see a new Viva Engage admin center where can assign roles, including the new corporate communicator role, and configure features. Learn more about these new admin capabilities <a href="https://aka.ms/AdminBlog/Feb2023">here.</a></p><p>These following features will be available to customers who have Microsoft Viva suite subscriptions:</p><ul><li><p>Leaders and audiences</p></li><li><p>Personal and audience analytics for leaders</p></li><li><p>Storyline announcements and posts for leaders</p></li><li><p>Leadership corner</p></li><li><p>Ask-me-anything events (AMAs)</p></li><li><p>Social campaigns</p></li></ul><p>Answers in Viva will be available to Microsoft Viva suite customers as well as Microsoft Viva Topics customers. Stay tuned for more options to try these new features.</p><h3>Requirements</h3><p>Many of these features require your Viva Engage/Yammer network to be in <a href="https://docs.microsoft.com/en-us/yammer/configure-your-yammer-network/native-mode-step-by-step-guide">native mode</a> and we will soon require all networks to be upgraded to native mode to support full compatibility with Azure AD and Microsoft 365. In addition, Answers in Viva requires that your Yammer topics are migrated to Viva Topics.</p><h3>Resources </h3><p>You can learn more about the features described in this article from these resources:</p><ul><li><p>DOCUMENTATION: <a href="https://support.microsoft.com/en-us/engage">Viva Engage Help &amp; Learning</a></p></li><li><p>ADOPTION RESOURCES: <a href="https://aka.ms/VivaEngage/Resources">Viva Engage Adoption Resources</a></p></li><li><p>BLOGS</p><ul><li><p><a href="https://www.microsoft.com/en-us/microsoft-365/blog/2023/02/13/yammer-is-evolving-to-microsoft-viva-engage-with-new-experiences-rolling-out-today/">Yammer is evolving to Microsoft Viva Engage with new experiences rolling out today</a></p></li><li><p><a href="https://techcommunity.microsoft.com/t5/microsoft-viva-blog/new-leadership-analytics-and-knowledge-experiences-for-viva/ba-p/3738818">New Leadership, Analytics, and Knowledge Experiences for Viva Engage are now rolling out</a></p></li><li><p><a href="https://techcommunity.microsoft.com/t5/yammer-blog/yammer-is-evolving-to-viva-engage/ba-p/3738825">Yammer is evolving to Viva Engage (rebranding announcement)</a></p></li></ul></li></ul><h3>Join us February 23rd for a Viva Engage AMA </h3><p>We&#8217;re hosting our own customer-facing AMA to answer your questions about Viva Engage. To learn more about the changes announced today, <a href="https://aka.ms/VivaEngage/CommunityAMA">join me February 23rd for the Viva Engage AMA</a> with the product leaders from the Viva Engage team. </p><h3>Join us at the Microsoft 365 Conference and<br>European Collaboration Summit</h3><p>I&#8217;ll be joined by members or our product teams to share the latest innovations with you, to dive deep into our technologies, and to answer your questions at two events this spring:</p><ul><li><p><a href="https://m365conf.com/#!/">The Microsoft 365 Conference: May 2-4, Las Vegas</a></p></li><li><p><a href="https://collabsummit.eu">The European Collaboration Summit: May 22-24, D&#252;sseldorf</a></p></li></ul><p>If you can join us in person, please do!!</p><h2>A PERSONAL NOTE</h2><p>Today is a milestone for me, my team, and the entire Viva Engage organization. It was exactly 368 days ago that we presented our vision to our senior leadership team for how we could empower tens of millions of Yammer customers to deliver rich employee experiences with what would become Viva Engage; and enable leaders, communicators, and employees to communicate and share knowledge more effectively as part of Microsoft Viva.</p><p>Our teams worked tirelessly across product management, research, design and engineering to build features that you, our customers, told us you needed. We spent hundreds of hours speaking with leaders and communications professionals, performing user research, and listening through every channel possible.</p><p>Today it gets real. We are excited to share our work with you, and to learn what we got right, and what we need to improve. We are <em>really</em> excited to learn what you need next. Because we&#8217;re just beginning. Our product and engineering teams look forward to building the future of this product with you. </p><p>And a huge note of thanks to Murali Sitaram, my manager Venkat Ayyadevara, and our Viva Engage leadership team for taking a &#8220;bet&#8221; on me to cross the chasm and become a leader on this exciting journey. To all my mentors, supporters and friends, my heartfelt gratitude. I look forward to your feedback and ideas! And to sharing some well-deserved adult beverages to celebrate.</p><h2>Wrapping up</h2><p>Hopefully this gives you enough to understand and explain the new Viva Engage features for leaders, communicators and knowledge sharing to your organization and end users. I plan to share more perspectives and details in future articles. And to share learnings about how our customers are using these capabilities to improve communication, engagement, and connectedness.</p><p>What, exactly, do you want to hear more about? What questions can I answer for you? Let me know, here! And if this was valuable, please share it forward, and subscribe!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/p/viva-engage-features-for-leaders?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/danholme.substack.com/p/viva-engage-features-for-leaders?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share"><span>Share</span></a></p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/danholme.substack.com/subscribe"><span>Subscribe now</span></a></p><p></p>]]></content:encoded></item><item><title><![CDATA[Yammer is Engaged! Get to know Viva Engage in Microsoft 365]]></title><description><![CDATA[Today we announced that we will evolve Yammer's web, mobile and Outlook applications to unify our experiences under the Viva Engage brand]]></description><link>https://danholme.substack.com/p/yammer-is-engaged-get-to-know-viva</link><guid isPermaLink="false">https://danholme.substack.com/p/yammer-is-engaged-get-to-know-viva</guid><dc:creator><![CDATA[Dan Holme]]></dc:creator><pubDate>Mon, 13 Feb 2023 22:09:52 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!6U9x!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>FAQ: What is Viva Engage, and what can I do with it in Microsoft 365 (at no extra cost)? What is the plan for rebranding Yammer to Viva Engage?</strong></p><p>Viva Engage brings people together across the organization to connect with leaders and coworkers, find answers to questions, share their unique story, and find belonging at work. Today, we announced plans to unify our experiences under the Viva Engage banner by renaming our remaining Yammer applications and integrations.</p><p>This article will (re-)introduce Viva Engage and the capabilities and scenarios that are available to Microsoft 365 customers at no additional cost. You can <a href="/__u/danholme.substack.com/p/viva-engage-features-for-leaders">learn more about new features for Microsoft Viva customers </a>that we released today. </p><h1>Viva Engage in Microsoft 365</h1><p>Remote and hybrid work have made building and maintaining connections across working groups and business silos extremely challenging. In our <a href="https://www.microsoft.com/en-us/worklab/work-trend-index/great-expectations-making-hybrid-work-work">Work Trends Index</a> research, 43% of leaders identified building relationships at work as the number one challenge of hybrid work. Employees hired since the beginning of the pandemic are less likely to feel included (64%), and report weaker relationships with their team (51%)</p><p>Viva Engage is the application in Microsoft 365 designed to address these challenges by connecting people across the organization to enable community building, knowledge sharing, employee engagement and communications at scale. </p><p>For those unfamiliar with Viva Engage (and Yammer) in Microsoft 365, you can:</p><p><strong>CONNECT WITH PEOPLE AND CONVERSATIONS</strong>:  Viva Engage lets you tap into the heartbeat of your organization, with a Home feed personalized by AI to surface relevant conversations and connections from across your organization.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!6U9x!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!6U9x!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png 424w, /__u/substackcdn.com/image/fetch/$s_!6U9x!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png 848w, /__u/substackcdn.com/image/fetch/$s_!6U9x!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png 1272w, /__u/substackcdn.com/image/fetch/$s_!6U9x!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!6U9x!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png" width="1456" height="921" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:921,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:2961263,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="/__u/substackcdn.com/image/fetch/$s_!6U9x!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png 424w, /__u/substackcdn.com/image/fetch/$s_!6U9x!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png 848w, /__u/substackcdn.com/image/fetch/$s_!6U9x!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png 1272w, /__u/substackcdn.com/image/fetch/$s_!6U9x!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1aae10b9-68c5-4eca-88c2-407a5350e683_2938x1858.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">The home feed is personalized by AI to recommend relevant conversations and connections from across your organization</figcaption></figure></div><p><strong>BUILD COMMUNITY</strong>: Communities connect people across working groups and business silos to foster inclusion and belonging, to support business initiatives that span the organization, and to enable communications and engagement at scale. Communities support myriad scenarios including:</p><ul><li><p>diversity and allyship</p></li><li><p>employee interests and activities</p></li><li><p>onboarding and professional development</p></li><li><p>knowledge sharing and Q&amp;A </p></li><li><p>shared services</p></li><li><p>business and cultural initiatives</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!JJ3E!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!JJ3E!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png 424w, /__u/substackcdn.com/image/fetch/$s_!JJ3E!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png 848w, /__u/substackcdn.com/image/fetch/$s_!JJ3E!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png 1272w, /__u/substackcdn.com/image/fetch/$s_!JJ3E!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!JJ3E!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png" width="1456" height="920" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:920,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:816254,&quot;alt&quot;:&quot;Screenshot of the Communities tab in Viva Engage&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Screenshot of the Communities tab in Viva Engage" title="Screenshot of the Communities tab in Viva Engage" srcset="/__u/substackcdn.com/image/fetch/$s_!JJ3E!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png 424w, /__u/substackcdn.com/image/fetch/$s_!JJ3E!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png 848w, /__u/substackcdn.com/image/fetch/$s_!JJ3E!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png 1272w, /__u/substackcdn.com/image/fetch/$s_!JJ3E!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e705b23-1fb0-4cc0-a51b-4b3ff0c18fb5_1470x929.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Communities foster inclusion and support business initiatives that span the organization</figcaption></figure></div><p><strong>HOST COMPANY-WIDE VIRTUAL EVENTS</strong>: Leaders, communicators, and employees can come together for company-wide live events featuring live and on-demand video, open discussion and Q&amp;A. Share vision, align people and spark engagement.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!pzlo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F227d79fa-3bae-4311-a780-88aae87441a6_636x403.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!pzlo!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F227d79fa-3bae-4311-a780-88aae87441a6_636x403.png 424w, /__u/substackcdn.com/image/fetch/$s_!pzlo!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F227d79fa-3bae-4311-a780-88aae87441a6_636x403.png 848w, /__u/substackcdn.com/image/fetch/$s_!pzlo!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F227d79fa-3bae-4311-a780-88aae87441a6_636x403.png 1272w, /__u/substackcdn.com/image/fetch/$s_!pzlo!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F227d79fa-3bae-4311-a780-88aae87441a6_636x403.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!pzlo!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F227d79fa-3bae-4311-a780-88aae87441a6_636x403.png" width="636" height="403" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/227d79fa-3bae-4311-a780-88aae87441a6_636x403.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:403,&quot;width&quot;:636,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Screenshot of a company-wide virtual event in Yammer&quot;,&quot;title&quot;:&quot;Screenshot showing new side by side experience for live events in Yammer&quot;,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Screenshot of a company-wide virtual event in Yammer" title="Screenshot showing new side by side experience for live events in Yammer" srcset="/__u/substackcdn.com/image/fetch/$s_!pzlo!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F227d79fa-3bae-4311-a780-88aae87441a6_636x403.png 424w, /__u/substackcdn.com/image/fetch/$s_!pzlo!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F227d79fa-3bae-4311-a780-88aae87441a6_636x403.png 848w, /__u/substackcdn.com/image/fetch/$s_!pzlo!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F227d79fa-3bae-4311-a780-88aae87441a6_636x403.png 1272w, /__u/substackcdn.com/image/fetch/$s_!pzlo!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F227d79fa-3bae-4311-a780-88aae87441a6_636x403.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Host company-wide live events with video, open discussion and Q&amp;A</figcaption></figure></div><p><strong>SHARE FROM YOUR STORYLINE</strong>: Storyline enables leaders to share thoughts &amp; vision with their own voice. And everyone has a place to share updates and knowledge, celebrate milestones and showcase work. Share with rich posts, videos and photos. <a href="/__u/danholme.substack.com/p/storyline-stories-fundamentals">Learn more about storyline in Viva Engage</a>.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!iRB4!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!iRB4!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png 424w, /__u/substackcdn.com/image/fetch/$s_!iRB4!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png 848w, /__u/substackcdn.com/image/fetch/$s_!iRB4!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png 1272w, /__u/substackcdn.com/image/fetch/$s_!iRB4!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!iRB4!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png" width="1456" height="921" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:921,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:7508634,&quot;alt&quot;:&quot;Screen shot of a storyline in Viva Engage&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Screen shot of a storyline in Viva Engage" title="Screen shot of a storyline in Viva Engage" srcset="/__u/substackcdn.com/image/fetch/$s_!iRB4!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png 424w, /__u/substackcdn.com/image/fetch/$s_!iRB4!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png 848w, /__u/substackcdn.com/image/fetch/$s_!iRB4!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png 1272w, /__u/substackcdn.com/image/fetch/$s_!iRB4!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F161ba3bf-1444-4989-a858-820544527c4b_5876x3716.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Share updates, experiences and perspectives from your storyline in Viva Engage</figcaption></figure></div><p>The core capabilities of these features&#8212;the feed, communities, events, and storylines&#8212;are available to most Microsoft 365 commercial customers at no additional cost. They&#8217;re available in Viva Engage and Yammer apps, and are integrated into Teams, Outlook, SharePoint and Microsoft Viva. And they&#8217;re built on the foundation of Microsoft 365, which delivers enterprise-grade security, privacy, compliance and manageability.</p><h2>Rebranding Yammer to Viva Engage</h2><p>Customers have made it clear that the scenarios Yammer delivers&#8212;community building, knowledge sharing, leadership engagement and employee communications&#8212;are critical to employee experience. We&#8217;re thrilled to bring Yammer&#8217;s superpowers to Microsoft Viva, our employee experience platform.</p><p>Last year, we introduced the Viva Engage app in Microsoft Teams&#8212;an evolution of the Yammer-powered Communities app. The Viva Engage app can be added to Teams by any user or deployed to the organization from the Teams admin center. </p><p>This year, we will rename and rebrand remaining Yammer experiences&#8212;our mobile and Outlook apps this spring (target: March) and our web application later this year. <a href="https://www.microsoft.com/en-us/microsoft-365/blog/2023/02/13/yammer-is-evolving-to-microsoft-viva-engage-with-new-experiences-rolling-out-today/">Learn more about our journey to rebrand Yammer to Viva Engage</a>.</p><p>Hopefully this gives you enough to understand and explain Viva Engage to your organization and end users. I plan to share more perspectives on how to do so, in future articles. And to share learnings about how our customers are using these capabilities to improve communication, engagement, and connectedness.</p><p>What, exactly, do you want to hear more about? What questions can I answer for you? Let me know, here! And if this was valuable, please share it forward, and subscribe!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/p/yammer-is-engaged-get-to-know-viva?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/danholme.substack.com/p/yammer-is-engaged-get-to-know-viva?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share"><span>Share</span></a></p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/danholme.substack.com/subscribe"><span>Subscribe now</span></a></p>]]></content:encoded></item><item><title><![CDATA[Storyline and stories in Viva Engage + Yammer: Comparing to consumer social media platforms]]></title><description><![CDATA[Learn how to help people familiar with LinkedIn, Facebook, Instagram and TikTok understand storylines, posts and stories.]]></description><link>https://danholme.substack.com/p/viva-engage-storyline-stories-vs-social-media</link><guid isPermaLink="false">https://danholme.substack.com/p/viva-engage-storyline-stories-vs-social-media</guid><dc:creator><![CDATA[Dan Holme]]></dc:creator><pubDate>Wed, 23 Nov 2022 16:55:59 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/h_600,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>FAQ: Are storyline and stories like Facebook, LinkedIn, Instagram and TikTok?</strong></p><p>Today a customer asked, as many often do, how to understand storyline and stories (or should we say &#8220;storylines, posts and stories&#8221;?) in relationship to LinkedIn, Facebook, Insta, TikTok and other consumer media. If you&#8217;re not already familiar with the fundamentals of storylines, posts and stories, <a href="/__u/danholme.substack.com/p/storyline-stories-fundamentals">read my fundamentals article</a> first.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!yL2V!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!yL2V!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png 424w, /__u/substackcdn.com/image/fetch/$s_!yL2V!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png 848w, /__u/substackcdn.com/image/fetch/$s_!yL2V!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png 1272w, /__u/substackcdn.com/image/fetch/$s_!yL2V!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!yL2V!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png" width="1456" height="870" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/d4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:870,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:1054146,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!yL2V!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png 424w, /__u/substackcdn.com/image/fetch/$s_!yL2V!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png 848w, /__u/substackcdn.com/image/fetch/$s_!yL2V!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png 1272w, /__u/substackcdn.com/image/fetch/$s_!yL2V!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4bff639-f218-44f3-bf42-9bb1cde5f86e_1471x879.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p></p><h1>Explaining storyline with social media comparisons</h1><p>I <em>often</em> give customers a shorthand description of <strong>storyline as</strong> <strong>LinkedIn </strong><em><strong>inside</strong></em><strong> your organization&#8221;</strong>. What you share reaches your followers and coworkers across your company. You can share and discuss internal activity that would not be appropriate to share on public platforms, and you can build relationships that foster connectedness, professional development, and career advancement.</p><p>A more detailed explanation relies on one&#8217;s understanding and history with sharing and self-expression in consumer social media. Concepts of storyline, posts, and stories exist in various forms across a number of social platforms.  Let me start with several snackable comparisons to social media constructs:</p><ul><li><p>Same: Your <strong>storyline</strong> is conceptually equivalent to your LinkedIn activity feed or your Facebook timeline, your &#8220;Insta&#8221; or your &#8220;TikToks&#8221;. It&#8217;s a place where you share stuff.</p></li><li><p>Same: You <strong>share with stories and posts</strong>. Stories are media-centric posts&#8212;short videos or photos, <em>very</em> similar to stories, reels, and TikToks. </p></li><li><p>Different: Some social platforms limit you to one or two formats for sharing: you can&#8217;t share posts on Insta or TikTok, and you can&#8217;t share photos on TikTok. On Yammer and Viva Engage, a bit more like Facebook, <strong>you can share posts </strong><em><strong>and </strong></em><strong>stories</strong>, and stories can be a short video (up to 3 minutes in public preview) or a photo.</p></li><li><p>Different: This is a tool for <strong>sharing and self-expression in the workplace</strong>. Thus, the next section of this article&#8230;</p></li></ul><h1>Business and technical differences</h1><p><strong>The types of content and conversations shared on storylines in the workplace can be quite different.</strong> </p><p>There is no one &#8220;standard&#8221; for sharing posts and media across consumer social platforms, so I&#8217;ll leave you to compare to your platforms of choice, but these are relatively unique business and technical considerations for storylines, posts and stories in Viva Engage and Yammer:</p><p><strong>Storyline is designed to</strong> provide a frictionless way to <strong>connect people, knowledge &amp; expertise, experience and perspectives</strong> across an organization through serendipitous discovery of content &amp; coworkers; to <strong>foster connectedness</strong>; and to <strong>build relationships</strong> that support productivity, innovation, professional development, and career advancement.</p><p>Your storyline is the <strong>expression of your persona at work</strong>. It&#8217;s where you can share updates, knowledge &amp; perspectives, and express yourself in the context of your workplace. </p><ul><li><p>The culture and policies of your organization should shape what you choose to share and showcase.</p></li></ul><p>Therefor <strong>what people share on storyline</strong> tends toward professional and work-oriented updates&#8212;more than you would see on most consumer social platforms. However, we see a lot of sharing of people sharing interests, passions and activities. </p><ul><li><p>Customers report they feel excited and fulfilled when they learn more about their coworkers. Storyline is proving it can be a powerful tool for helping people connect as human beings at work. Connectedness helps people find belonging, appreciate diversity, and increase empathy. We anticipate that, over time, we will be able to provide data that links these personal connections to increases in productivity, innovation, and retention&#8212;concepts that are already well supported by research into related solutions for engagement and wellbeing. </p></li><li><p>In a future article, I&#8217;ll share a list of specific ideas of what people can share on their storyline.</p></li></ul><p><strong>Anyone in the organization can visit your storyline and follow you</strong>. And when you follow someone, their posts and stories will be prioritized in your feeds and carousels. You can also receive notifications when they post. </p><ul><li><p>Notifications tip: you can manage notifications you receive from one person from their storyline. You can manage notifications you receive from everyone you follow from your own storyline&#8212;click Following. And soon you&#8217;ll be able to manage notifications you receive from the notifications themselves.</p></li></ul><p><strong>Content you share is visible to </strong><em><strong>everyone</strong></em><strong> in your organization</strong>. Anyone can visit to learn more about you and will see your posts and stories. </p><ul><li><p>While your followers will see your content higher in their feeds, your posts and stories can be <em>suggested</em> to anyone based on numerous signals including who follows you, who you follow, and who engages with your content. </p></li><li><p>There is not a way to &#8220;restrict&#8221; who can see your storyline or content.</p></li></ul><p><strong>Content does not disappear from your storyline. </strong>When you make the effort to share an update, experience, or perspective, it stays on your storyline until (if and when) you choose to delete it. </p><ul><li><p>Our goal is not to drive people to consume content every day&#8212;it&#8217;s to capture and share knowledge and connect people. Of course, posts and stories will eventually disappear from feeds and carousels in &#8220;discovery&#8221; experiences like the Home feed as relevance decreases over time and with less engagement. Stories are removed from the discovery carousels after 30 days. But posts and stories <em>do</em> remain on your storyline.</p></li></ul><p><strong>Your organization can govern storyline</strong> with a number of controls for </p><ul><li><p>Enablement: storyline can be turned on or off for the organization</p></li><li><p>Monitoring: the Storylines page has an &#8220;All&#8221; view that allows anyone to see all storyline activity, and Microsoft Purview Communications Compliance applies AI to identify potential harassment, bullying, or violation of policy.</p></li><li><p>Moderation and response: any user can report a conversation that appears to violate policies and standards, and Microsoft Purview Communications Compliance can automatically create incidents to orchestrate response.</p></li><li><p>Security, privacy and compliance: when you are in Native Mode, content can be governed with information policies and ediscovery.</p></li></ul><p>Hopefully this comparison of storyline and stories in Viva Engage + Yammer to consumer social media platforms helps you understand the features and explain them to people familiar with LinkedIn, Facebook, Insta, TikTok and the like.</p><p>What questions can I answer for you? What would you want to hear more about? Let me know, here! And if this was valuable, please share it forward, and subscribe!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/p/viva-engage-storyline-stories-vs-social-media?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/danholme.substack.com/p/viva-engage-storyline-stories-vs-social-media?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share"><span>Share</span></a></p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/danholme.substack.com/subscribe"><span>Subscribe now</span></a></p><p></p><p></p>]]></content:encoded></item><item><title><![CDATA[Storyline and stories in Viva Engage + Yammer: Fundamentals]]></title><description><![CDATA[Understand and explain the fundamentals of the storyline feature: storylines, posts and stories, feeds and carousels.]]></description><link>https://danholme.substack.com/p/storyline-stories-fundamentals</link><guid isPermaLink="false">https://danholme.substack.com/p/storyline-stories-fundamentals</guid><dc:creator><![CDATA[Dan Holme]]></dc:creator><pubDate>Wed, 23 Nov 2022 15:04:28 GMT</pubDate><enclosure url="https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/88a58d4d-1aa3-410c-bc87-89110b3ac95f_4896x2796.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>FAQ: How can I best understand and explain storyline &amp; stories in Viva Engage and Yammer?</strong></p><p>Many of my followers are responsible for technology solutions that support productivity and employee experience, including tools like Microsoft 365 and Microsoft Viva. They need to understand our technologies in order to align them with their business objectives, to drive adoption, and to measure success. </p><p>In this article, I&#8217;ll start with some fundamentals to help you explain to your end users. In later articles, I&#8217;ll go into more details to give you a deeper understanding.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!4dld!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!4dld!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png 424w, /__u/substackcdn.com/image/fetch/$s_!4dld!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png 848w, /__u/substackcdn.com/image/fetch/$s_!4dld!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png 1272w, /__u/substackcdn.com/image/fetch/$s_!4dld!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_webp, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!4dld!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png" width="1456" height="831" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:831,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:5534151,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!4dld!, /__u/danholme.substack.com/w_424, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png 424w, /__u/substackcdn.com/image/fetch/$s_!4dld!, /__u/danholme.substack.com/w_848, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png 848w, /__u/substackcdn.com/image/fetch/$s_!4dld!, /__u/danholme.substack.com/w_1272, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png 1272w, /__u/substackcdn.com/image/fetch/$s_!4dld!, /__u/danholme.substack.com/w_1456, /__u/danholme.substack.com/c_limit, /__u/danholme.substack.com/f_auto, /__u/danholme.substack.com/q_auto:good, /__u/danholme.substack.com/fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F48137ea5-3265-44ec-8dfe-818a8077a0ad_4896x2796.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">A storyline in Viva Engage features a customizable cover photo, a feed of posts and a carousel of stories</figcaption></figure></div><p><strong>Storyline is a feature</strong> of Viva Engage, available to most Microsoft 365 customers at no additional charge, that appears across Microsoft Viva and Microsoft 365 apps. You&#8217;ll see storyline experiences in Yammer, Microsoft Teams, Outlook, Microsoft Viva Connections, and more.</p><p><strong>Your </strong><em><strong>storyline</strong></em><strong> is your place</strong> to express yourself, share updates, experiences, knowledge and perspectives with followers and coworkers. </p><ul><li><p>You can learn more about coworkers from their storylines and what they share. You can follow interesting people to prioritize their activity in your feeds, and you can choose to receive notifications when they share.</p></li><li><p>I often describe storyline as &#8220;LinkedIn <em>inside</em> your organization&#8221;. What you share reaches your followers and coworkers across your company. You can share and discuss internal activity that would not be appropriate to share on public platforms, and you can build relationships that foster connectedness, professional development, and career advancement.</p></li></ul><p><strong>You share with </strong><em><strong>posts</strong></em><strong> or </strong><em><strong>stories</strong></em>. </p><ul><li><p>Posts often lead with text, and can also contain images, video, links, and attachments&#8212;very flexible, very familiar.</p></li><li><p>Stories are <em>media-centric posts</em> that lead with a short video (up to 3 minutes in public preview) or photo, though they also support a short description (up to 150 characters in public preview) to facilitate accessibility, search, links, topics and @mentions.</p></li></ul><p><strong>Posts and stories show up in feeds and carousels. </strong>You find and view posts in feeds. You find stories in a <em>carousel </em>feed, and they play in an immersive media viewing experience. You&#8217;ll find feeds and carousels across Viva Engage (in Teams and Outlook) and Yammer (web and mobile):</p><ul><li><p>The Home experience, which is a feed of all content from across Viva Engage and Yammer from any community or storyline. The feed is highly personalized to surface and suggest the most relevant content to you.</p></li><li><p>The Storylines experience, which zooms in on content only from storylines. There&#8217;s a highly personalized feed that includes suggestions, and an even more sharply focused feed of content only from people you follow. And there&#8217;s a feed of all storyline content that will be particularly useful to people who &#8220;own&#8221; the storyline experience for their organizations, allowing you to keep tabs on everything that is being shared.</p></li><li><p>Individual storylines, which show content shared by the individual.</p></li><li><p>Campaigns&#8212;a new features of the Viva suite coming in 2023&#8212;will aggregate all content using the campaign #tag from storylines and communities</p></li><li><p>Leadership corner&#8212;a new feature of the Viva suite coming in 2023&#8212;gives each employee a personalized view of their leaders and the content they&#8217;re sharing on storylines and in communities.</p></li></ul><ul><li><p>You&#8217;ll also see feeds and carousels in digests that help you catch up from your Outlook inbox or Teams activity feed.</p></li><li><p>You&#8217;ll see storyline posts in the Viva Connections feed.</p></li><li><p>And you can receive notifications (in email, Teams Activity, or Viva Engage/Yammer bell) for new posts and stories from people you follow&#8212;a particularly useful way to stay informed about valuable updates. </p></li></ul><p>Hopefully this gives you enough to understand and explain storyline and stories to your organization and end users. I plan to share more perspectives on how to do so, in future articles. And to share learnings about how our customers are using these capabilities to improve communication, engagement, and connectedness.</p><p>What, exactly, do you want to hear more about? What questions can I answer for you?  Let me know, here! And if this was valuable, please share it forward, and subscribe!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/p/storyline-stories-fundamentals?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/danholme.substack.com/p/storyline-stories-fundamentals?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share"><span>Share</span></a></p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/danholme.substack.com/subscribe"><span>Subscribe now</span></a></p><p></p>]]></content:encoded></item><item><title><![CDATA[Coming soon]]></title><description><![CDATA[Welcome to Innovation Technology & People, at the intersection of the digital workplace and employee experience.]]></description><link>https://danholme.substack.com/p/coming-soon</link><guid isPermaLink="false">https://danholme.substack.com/p/coming-soon</guid><dc:creator><![CDATA[Dan Holme]]></dc:creator><pubDate>Mon, 21 Nov 2022 16:27:53 GMT</pubDate><content:encoded><![CDATA[<p>Welcome to <strong>Innovation Technology &amp; People</strong>, at the intersection of the digital workplace and employee experience.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://danholme.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/danholme.substack.com/subscribe"><span>Subscribe now</span></a></p>]]></content:encoded></item></channel></rss>