decruft 0.1.2

Extract clean, readable content from web pages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
<!DOCTYPE html>
<html lang="en-US" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
    <head>
        <meta charset="UTF-8" /><!-- Data Layer Code starts --><!-- Data Layer Code ends --><!-- Google Tag Manager -->

        <script>
        <![CDATA[
        (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
        new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
        j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
        'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
        })(window,document,'script','dataLayer','GTM-PGLF8G');
        ]]>
        </script><!-- End Google Tag Manager -->
        <!-- NEW Google Tag Manager -->

        <script>
        <![CDATA[
        (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
        new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
        j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
        'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
        })(window,document,'script','dataLayer','GTM-KTKRL68F');
        ]]>
        </script><!-- NEW End Google Tag Manager -->
        <!--<script async src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script async src="/wp-includes/js/jquery/jquery.min.js?ver=3.6.0"></script>-->
        <!--<script src="/wp-content/themes/gauge-child/lib/scripts/custom.js"></script>-->

        <script src="https://cdn.jsdelivr.net/npm/js-cookie@3.0.1/dist/js.cookie.min.js" async="true"></script>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&amp;display=swap" rel="stylesheet" />
        <link rel="profile" href="https://gmpg.org/xfn/11" />
        <link rel="icon" href="/wp-content/themes/gauge-child/images/favicon.ico" type="image/x-icon" /><!-- zdconsent.js & z0WVjCBSEeGLoxIxOQVEwQ.min.js for EU user popup -->
        <!-- CHD Landing Pages start -->

        <style>
        <![CDATA[
        .popular-section{display:none;}
        ]]>
        </style><!-- CHD Landing Pages end -->
        <meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" /><!-- This site is optimized with the Yoast SEO Premium plugin v23.4 (Yoast SEO v23.5) - https://yoast.com/wordpress/plugins/seo/ -->
        <title>
            Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform - Spiceworks
        </title>
        <meta name="description" content="Vidyard launches new tools and features on its platform to help professionals collaborate and share videos on the go." />
        <link rel="canonical" href="https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/" />
        <meta property="og:locale" content="en_US" />
        <meta property="og:type" content="article" />
        <meta property="og:title" content="Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform - Spiceworks" />
        <meta property="og:description" content="Vidyard launches new tools and features on its platform to help professionals collaborate and share videos on the go." />
        <meta property="og:url" content="https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/" />
        <meta property="og:site_name" content="Spiceworks Inc" />
        <meta property="article:publisher" content="https://www.facebook.com/SpiceworksNews/" />
        <meta property="article:modified_time" content="2025-01-07T09:08:22+00:00" />
        <meta property="og:image" content="https://images.spiceworks.com/ad/93/9f099ec74374a67121155d25f38a/viyard.jpg" />
        <meta property="og:image:width" content="1" />
        <meta property="og:image:height" content="1" />
        <meta property="og:image:type" content="image/jpeg" />
        <meta name="twitter:card" content="summary_large_image" />
        <meta name="twitter:site" content="@SpiceworksNews" />
        <meta name="twitter:label1" content="Est. reading time" />
        <meta name="twitter:data1" content="4 minutes" /><!-- / Yoast SEO Premium plugin. -->
        <link rel="dns-prefetch" href="//www.google.com" />
        <link rel="dns-prefetch" href="//edge.spiceworksstatic.com" />
        <link rel="dns-prefetch" href="//fonts.googleapis.com" />
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="" />
        <script type="text/javascript">
        /* <![CDATA[ */
        window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.spiceworks.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.6.2"}};
        /*! This file is auto-generated */
        !function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
        /* ]]> */
        </script>
        <link rel="stylesheet" id="ids_navigation_css-css" href="https://edge.spiceworksstatic.com/service.identity/assets/navigation.css?defer&amp;ver=v3.2.4" type="text/css" media="all" />
        <style id="wp-emoji-styles-inline-css" type="text/css">
        /*<![CDATA[*/

        img.wp-smiley, img.emoji {
                display: inline !important;
                border: none !important;
                box-shadow: none !important;
                height: 1em !important;
                width: 1em !important;
                margin: 0 0.07em !important;
                vertical-align: -0.1em !important;
                background: none !important;
                padding: 0 !important;
        }
        /*]]>*/
        </style>
        <style id="classic-theme-styles-inline-css" type="text/css">
        /*<![CDATA[*/
        /*! This file is auto-generated */
        .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
        /*]]>*/
        </style>
        <style id="global-styles-inline-css" type="text/css">
        /*<![CDATA[*/
        :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
        :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
        :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
        :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
        /*]]>*/
        </style>
        <link rel="stylesheet" id="gp-parent-style-css" href="https://www.spiceworks.com/wp-content/themes/gauge/style.css?defer&amp;ver=v3.2.4" type="text/css" media="all" />
        <link rel="stylesheet" id="ghostpool-style-css" href="https://www.spiceworks.com/wp-content/themes/gauge-child/style.css?ver=v3.2.4" type="text/css" media="all" />
        <style id="ghostpool-style-inline-css" type="text/css">
        /*<![CDATA[*/

                #gp-main-header{height: 125px;}
                #gp-fixed-header-padding{padding-top: 125px;}
                #gp-logo img{width: 220px; height: 69px;}
                .gp-page-header .gp-container{padding-top: 155px;padding-bottom: 50px;}
                .gp-active{color: ;}
                .gp-score-spinner{
                background: #E63900;
                background: -moz-linear-gradient(#E63900 0%,#E6730070%);
                background: -webkit-gradient(color-stop(0%,#E63900 ), color-stop(70%,#E67300 ));
                background: -webkit-linear-gradient(#E63900  0%,#E67300  70%);
                background: -o-linear-gradient(#E63900  0%,#E67300  70%);
                background: -ms-linear-gradient(#E63900  0%,#E67300 70%);
                background: linear-gradient(#E63900  0%,#E67300 70%);
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#E67300", endColorstr="#E63900",GradientType=1 );
                }
                .gp-no-score-clip-1 .gp-score-spinner{
                background: #E63900;
                }
                .gp-no-score-clip-2 .gp-score-filler{
                background: #E63900;
                background: -moz-linear-gradient(#E67300 0%,#E6390070%);
                background: -webkit-gradient(color-stop(0%,#E67300 ), color-stop(70%,#E63900 ));
                background: -webkit-linear-gradient(#E67300  0%,#E63900  70%);
                background: -o-linear-gradient(#E67300  0%,#E63900  70%);
                background: -ms-linear-gradient(#E67300  0%,#E63900 70%);
                background: linear-gradient(#E67300  0%,#E63900 70%);
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#E63900", endColorstr="#E67300",GradientType=1 );
                }
                select{background-color: #fff;}
                .gp-responsive #gp-sidebar{border-color: #ddd;}
                .gp-slider .gp-slide-image {
                height: 450px;
                }.gp-theme #buddypress .activity-list .activity-content blockquote a{color: }.gp-theme #buddypress .activity-list .activity-content blockquote a:hover{color: }.gp-wide-layout.gp-header-standard .gp-nav .menu li.megamenu > .sub-menu, .gp-wide-layout.gp-header-standard .gp-nav .menu li.tab-content-menu .sub-menu, .gp-wide-layout.gp-header-standard .gp-nav .menu li.content-menu .sub-menu{left: -220px;}.gp-scrolling.gp-wide-layout.gp-header-standard .gp-nav .menu li.megamenu > .sub-menu, .gp-scrolling.gp-wide-layout.gp-header-standard .gp-nav .menu li.tab-content-menu .sub-menu, .gp-scrolling.gp-wide-layout.gp-header-standard .gp-nav .menu li.content-menu .sub-menu{left: -220px;}.gp-boxed-layout.gp-header-standard .gp-nav .menu li.megamenu > .sub-menu, .gp-boxed-layout.gp-header-standard .gp-nav .menu li.tab-content-menu .sub-menu, .gp-boxed-layout.gp-header-standard .gp-nav .menu li.content-menu .sub-menu{left: -220px;}.gp-scrolling.gp-boxed-layout.gp-header-standard .gp-nav .menu li.megamenu > .sub-menu, .gp-scrolling.gp-boxed-layout.gp-header-standard .gp-nav .menu li.tab-content-menu .sub-menu, .gp-scrolling.gp-boxed-layout.gp-header-standard .gp-nav .menu li.content-menu .sub-menu{left: -146.666666667px;}@media only screen and (max-width: 1023px) {
                        .gp-responsive #gp-main-header {height: 83px!important;}
                        .gp-responsive #gp-fixed-header-padding {padding-top: 83px!important;}
                        .gp-responsive #gp-logo {margin: 0px 0px 0px 0px; width: 147px; height: 46px;}
                        .gp-responsive #gp-logo img {width: 147px; height: 46px;}
                        .gp-responsive .gp-page-header .gp-container {
                        padding-top: 103px;
                        padding-bottom: 33px;
                        }
                }
                @media only screen and (max-width: 767px) {
                        .gp-responsive .gp-slider .gp-slide-image {
                        height: 200px !important;
                        }       
                }       
                @media only screen and (max-width: 320px) {
                        .gp-responsive.gp-theme .woocommerce div.product .woocommerce-tabs ul.tabs li.active a,.gp-responsive.gp-theme .woocommerce #gp-content div.product .woocommerce-tabs ul.tabs li.active a,.gp-responsive.gp-theme.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a,.gp-responsive.gp-theme.woocommerce-page #gp-content div.product .woocommerce-tabs ul.tabs li.active a {border-color: #ddd;}}
                        hr,.gp-theme .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content,.gp-theme.woocommerce-page .widget_price_filter .price_slider_wrapper .ui-widget-content {background: #ddd;
                }@media only screen and (min-width: 1201px) {.gp-container,.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_row,.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_accordion,.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_tabs,.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_tour,.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_teaser_grid,.gp-slide-caption,.gp-nav .menu li.megamenu > .sub-menu,.gp-nav .menu li.tab-content-menu .sub-menu,.gp-nav .menu li.content-menu .sub-menu{width: 1170px;}
                                        .gp-slide-caption{margin-left: -585px;}#gp-content,.gp-top-sidebar #gp-review-content{width: 810px;}#gp-sidebar{width: 330px;}}@media only screen and (max-width: 1200px) and (min-width: 1083px) {.gp-responsive .gp-container,.gp-responsive.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_row,.gp-responsive.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_accordion,.gp-responsive.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_tabs,.gp-responsive.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_tour,.gp-responsive.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_teaser_grid,.gp-responsive .gp-slide-caption,.gp-nav .menu li.megamenu > .sub-menu,.gp-nav .menu li.tab-content-menu .sub-menu,.gp-nav .menu li.content-menu .sub-menu{width: 1040px;}
                                        .gp-responsive .gp-slide-caption{margin-left: -520px;}.gp-responsive #gp-content,.gp-responsive .gp-top-sidebar #gp-review-content{width: 680px;}.gp-responsive #gp-sidebar,.gp-responsive.gp-no-sidebar #gp-user-rating-wrapper,.gp-responsive.gp-fullwidth #gp-user-rating-wrapper{width: 330px;}}@media only screen and (max-width: 1082px) and (min-width: 1024px) {.gp-responsive .gp-container,.gp-responsive.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_row,.gp-responsive.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_accordion,.gp-responsive.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_tabs,.gp-responsive.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_tour,.gp-responsive.gp-fullwidth .vc_col-sm-12.wpb_column > .wpb_wrapper > .wpb_teaser_grid,.gp-responsive .gp-slide-caption,.gp-nav .menu li.megamenu > .sub-menu,.gp-nav .menu li.tab-content-menu .sub-menu,.gp-nav .menu li.content-menu .sub-menu{width: 980px;}
                                        .gp-responsive .gp-slide-caption{margin-left: -490px;}
                                        .gp-responsive .hub-header-info{width:490px;}.gp-responsive #gp-content,.gp-responsive .gp-top-sidebar #gp-review-content{width: 630px;}.gp-responsive #gp-sidebar {width: 330px;}}@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
        .up-arrow i {display:none}
        .Addsticky .gp-container {padding-top: 0px}
        @media screen and (max-device-width: 767px) and (min-device-width: 320px){
        .gp-page-header .gp-container {padding-top: 20px}
        }
        @media screen and (max-width:1280px) and (min-width:1025px) {
        .home-page-top-right .promo-img-mobile, .home-page-top-right .promo-img-ipad {display: none;}
        .gp-entry-text > .home-page-top-right {padding-bottom: 12px !important;}
        .gp-entry-text > .home-page-top-right ~ .home-page-top-right {padding: 18px 0px 15px 0px !important;}
        .gp-entry-text .home-page-top-left {width:55% !important;}
        .home-page-top-left .homepage-first-content {width:100% !important;}
        .gp-entry-text > .home-page-top-right ~ .home-page-top-right, .gp-entry-text > .home-page-top-right {width:38% !important;}
        .gp-entry-text > .home-page-top-right .nopadding.col-lg-4 {padding-right:18px !important;}
        .homepage-right-headline a {font-size: 16px !important;line-height: 23px !important;}
        }
        .homepage-popular-pad ul li:hover {background: #007FA2!important;border-radius: 3px!important;padding: 4px 8px!important;}
        .homepage-popular-pad ul li:hover a {color:#ffffff !important;}
        .article-description .gp-author-name a:hover, .article-description .gp-author-name a:focus {color: #007FA2 !important;}
        img[src*="https://zdbb.net/l/z0WVjCBSEeGLoxIxOQVEwQ?additionalInformation=&cms_page_id=&local_uid=myasuhsarv1w&referrer=&zd_pageview_id=0a531571-825f-4c41-94b5-313b860d5bc0&zd_session_id=ef296df0-303e-4408-bafa-cd73a16169df&zd_location=https%3A%2F%2Fcosmos-stage.spiceworks.com%2Ffree-help-desk-software%2Fself-hosted%2F&evidon_consent=undefined&third_party_consent=&fu=false&fpid=420c64da4dde461c93d30633c1acdaee&ppid=420c64da4dde461c93d30633c1acdaee"] {display:none;}
        @media screen and (min-width:1140px) and (max-width:3000px) {
        .article-sidebar .adcode-sidebar-two .right-section-1 {margin-top:35px !important;}
        .adcode-sidebar-two div#sidebar-bottom-ad {min-height: 251px;}
        }
        body.page-template-about-editorial-team .about-editorial-main .external-link-icon em.fas {display: none;}
        .gp-entry-content ol li {list-style: decimal;}
        .gp-entry-content ol li ol li {}                                
        .article-description h3 a{font-size: 36px!important;line-height: 46px!important;font-family:'Roboto'!important;font-style: normal!important;font-weight: 700!important;color: #007FA2!important;}                               
        .article-description h3 span{font-weight: 700!important;}
        .article-description h2 span{font-weight: 700!important;}       
        #description img {margin-left: auto!important}
        b, strong { font-weight: 700; line-height: inherit;}                            
        .bg-orange-tint-4 span.external-link-icon em:before, .contact-main em.fas.fa-external-link-alt:before {
        display: none !important;
        }                               
        @media screen and (max-width:767px) and (min-width:100px) {
        body.postid-3146001 .article-description .gp-entry-text p {line-height: 27px !important;}
        body.postid-3146001 .gp-entry-text img {max-width: 100%;display: block;}
        }                               
        body.privacy-policy table th, body.privacy-policy .wp-block-table th, body.privacy-policy table td, body.privacy-policy .wp-block-table td {border: 1px solid #eee;padding: 15px;}      
        .partnership-with-logo figure.article-thumbnail {margin: 0;}
        ol.serial-number li {list-style: unset;padding:6px 0;}
        ol.serial-number {margin: 0;padding: 0 0 0 25px;}
        body.privacy-policy .entry-content ul {list-style: none;margin: 0 0 0 17px;padding: 0;}
        body.privacy-policy .entry-content ul li {list-style: square;padding:6px 0;}
        @media only screen and (max-width: 1000px) {
        .lean-navbar-header__drawer-trigger--loading {
        max-width: 26px !important;
        }
        }
        body.author .f-right em.fa.fa-linkedin::before, body.archive .f-right em.fa.fa-linkedin::before {
        content: "\f0e1" !important;
        font-family: 'FontAwesome' !important;
        font-weight: normal !important;
        }
        .article-description table span.external-link-icon {font-size: 0px !important;}
        .take-me-to-community span.external-link-icon, body.single span.external-link-icon  {font-size: 0;}
        /*]]>*/
        </style>
        <link rel="stylesheet" id="redux-extendify-styles-css" href="https://www.spiceworks.com/wp-content/themes/gauge/lib/framework/redux/assets/css/extendify-utilities.css?ver=v3.2.4" type="text/css" media="all" />
        <link rel="stylesheet" id="lightgallery-css-css" href="https://www.spiceworks.com/wp-content/themes/gauge-child/css/lightgallery.css?ver=v3.2.4" type="text/css" media="all" />
        <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js?ver=3.4.1" id="jquery-core-js"></script>
        <script type="text/javascript" src="https://www.spiceworks.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge-child/js/lightgallery.js?ver=1.6.16" id="lightgallery-js"></script>
        <link rel="https://api.w.org/" href="https://www.spiceworks.com/wp-json/" />
        <link rel="shortlink" href="https://www.spiceworks.com/?p=92884" />
        <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.spiceworks.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.spiceworks.com%2Fmarketing%2Fmarketing-strategy%2Fnews%2Frewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform%2F" />
        <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.spiceworks.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.spiceworks.com%2Fmarketing%2Fmarketing-strategy%2Fnews%2Frewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform%2F&amp;format=xml" />
        <script>
        <![CDATA[
                (function(h,o,t,j,a,r){
                        h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
                        h._hjSettings={hjid:2670087,hjsv:5};
                        a=o.getElementsByTagName('head')[0];
                        r=o.createElement('script');r.async=1;
                        r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
                        a.appendChild(r);
                })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
        ]]>
        </script><!--PogoConfig-->

        <script>
        <![CDATA[
        window.PogoConfig = {
          'template': 'news',
          'category': 'marketing',
          'isNewsAndInsight': true,
          'isLoggedIn': false,
          'tags': ["marketing-strategy"]          
        }
        ]]>
        </script><!--PogoConfig-->

        <script>
        <![CDATA[

        const tax_data = {
                        primary_category: 'marketing-strategy',
                        secondary_category: '', 
                        tags: []                };

        window.SWZDTaxonomyInfo = tax_data;
        ]]>
        </script>
        <meta name="generator" content="Redux 4.4.11" />
        <script>
        <![CDATA[
        $(document).ready(function() {
        $("a[href='#']").attr('href', 'javascript:void(0)');
        setTimeout(function(){ $('.gp-mobile-dropdown-icon').first().click();
         $('.gp-mobile-dropdown-icon').first().addClass("menu-icon");}, 2000);
         

        setTimeout(function(){ $(".ArticleMain-lead img").attr('src').replace("-150x150","");
        $("img").each(function(){
        $(this).attr('src', $(this).attr("src").replace('-150x150', ''));
        $('#gp-copyright-text').html($('#gp-copyright-text').html().replace('2020','2021'));

        });
        }, 1000);
        $('#gp-copyright-text').html($('#gp-copyright-text').html().replace('2020','2021'));

        //$('.single .gp-entry-text ul li a[target="_blank"]').removeAttr('target'); 
        //$('.single .gp-entry-text p a[target="_blank"]').removeAttr('target'); 
         
           if(window.location.href === "https://www.spiceworks.com/tech/sap/"){ 

        $("#gp-page-wrapper #gp-top-header").next().next().next().next().addClass("hideme1");
        }else if(window.location.href === "https://www.spiceworks.com/tech/peoplesoft/"){
          
          $("#gp-page-wrapper #gp-top-header").next().next().next().next().addClass("hideme1");
        }else if(window.location.href === "https://www.spiceworks.com/tech/siebel/"){

         $("#gp-page-wrapper #gp-top-header").next().next().next().next().addClass("hideme1");
        }

        var urlPath = window.location.pathname.split("/"); 
        if(urlPath[1].match(/openidcallback/)) {
        console.log("printtt");
        setTimeout(function(){ location.reload(); }, 3000);

        }

        });

        jQuery(document).ready(function() {
        jQuery('.gp-standard-header.Addsticky').attr('style', 'top:0px');
        });                     

        jQuery(document).ready(function() {
        var stylesheet = $("<link>", {
        rel: "stylesheet",
        type: "text/css",
        href: "https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap"
        });
        stylesheet.appendTo("head");
        });
        ]]>
        </script>
        <style type="text/css">
        /*<![CDATA[*/
        .recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}
        /*]]>*/
        </style>
        <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress." />
        <link rel="icon" href="https://images.spiceworks.com/wp-content/uploads/2024/07/02084556/spiceworks-logo-icon.jpg" sizes="32x32" />
        <link rel="icon" href="https://images.spiceworks.com/wp-content/uploads/2024/07/02084556/spiceworks-logo-icon.jpg" sizes="192x192" />
        <link rel="apple-touch-icon" href="https://images.spiceworks.com/wp-content/uploads/2024/07/02084556/spiceworks-logo-icon.jpg" />
        <meta name="msapplication-TileImage" content="https://images.spiceworks.com/wp-content/uploads/2024/07/02084556/spiceworks-logo-icon.jpg" />
        <style>
        <![CDATA[
        .shorten_url { 
           padding: 10px 10px 10px 10px ; 
           border: 1px solid #AAAAAA ; 
           background-color: #EEEEEE ;
        }
        ]]>
        </style>
        <style id="gp-dynamic-css" title="dynamic-css" class="redux-options-output">
        <![CDATA[
        #gp-logo{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}#gp-page-wrapper,.gp-post-section-header h3,#reply-title{background-color:#fff;}body{line-height:24px;color:#0d0d0d;font-size:14px;}.gp-entry-header .gp-entry-meta,#gp-review-content-wrapper .gp-subtitle,.gp-post-section-header-line,.gp-element-title-line,#comments ol.commentlist li .comment_container,.gp-portfolio-filters,.gp-tablet-portrait #gp-sidebar,.gp-mobile #gp-sidebar,#gp-review-summary,.gp-login-content,.gp-loop-divider:before, section.sticky{border-top:1px solid #eee;border-bottom:1px solid #eee;}.gp-slide-caption-title,.gp-featured-caption-title{color:#ffffff;}.gp-slide-caption-text,.gp-featured-caption-text{color:#ffffff;}#gp-top-header{background-color:#000;}#gp-top-header{border-bottom:1px solid #292929;}#gp-left-top-nav .menu > li,#gp-left-top-nav .menu > li > a{font-family:"Open Sans",Arial, Helvetica, sans-serif;font-weight:400;font-style:normal;color:#fff;font-size:12px;}#gp-left-top-nav .menu > li > a:not(.gp-notification-counter){color:#fff;}#gp-left-top-nav .menu > li > a:not(.gp-notification-counter):hover{color:#f84103;}#gp-top-header .gp-social-icons a{font-size:14px;}#gp-top-header .gp-social-icons a{color:#555555;}#gp-top-header .gp-social-icons a:hover{color:#eeeeee;}#gp-top-header #gp-cart-button{color:#fff;}#gp-top-header #gp-cart-button:hover{color:#f84103;}#gp-right-top-nav .menu > li, #gp-right-top-nav .menu > li a{font-family:"Open Sans";font-weight:400;font-style:normal;font-size:12px;}#gp-right-top-nav .menu > li > a:not(.gp-notification-counter){color:#f84103;}#gp-right-top-nav .menu > li > a:not(.gp-notification-counter):hover{color:#fff;}#gp-main-header{background-color:transparent;}.gp-desktop #gp-main-header.gp-header-small,.gp-desktop.gp-header-noresize #gp-main-header.header-large,.gp-no-large-title #gp-main-header{background-color:#1c1c1c;}#gp-main-nav .menu > li{font-family:"Open Sans";font-weight:400;font-style:normal;color:#fff;font-size:14px;}#gp-main-nav .menu > li > a{color:#fff;}#gp-main-nav .menu > li > a:hover{color:#f84103;}.gp-nav .sub-menu,.gp-nav .menu li .gp-menu-tabs li:hover, .gp-nav .menu li .gp-menu-tabs li.gp-selected{background-color:#f1f1f1;}.gp-nav .menu > li.menu-item-has-children > a:hover:after,.gp-nav .menu > li.menu-item-has-children:hover > a:after,.gp-nav .menu > li.tab-content-menu > a:hover:after,.gp-nav .menu > li.tab-content-menu:hover > a:after,.gp-nav .menu > li.content-menu > a:hover:after,.gp-nav .menu > li.content-menu:hover > a:after,#gp-dropdowncart .menu > li:hover a:after{color:#f1f1f1;}.gp-nav .sub-menu li a:hover{background-color:#f1f1f1;}.gp-nav .sub-menu li,#gp-dropdowncart .total,#gp-dropdowncart .buttons{border-top:1px solid #dddddd;}.gp-nav .sub-menu li,.gp-nav .sub-menu a{font-family:"Open Sans";font-weight:400;font-style:normal;color:#000;font-size:14px;}.gp-nav .sub-menu li a{color:#000;}.gp-nav .sub-menu li a:hover{color:#f84103;}.gp-nav .megamenu > .sub-menu > li > a{color:#f84103;}.gp-nav .megamenu > .sub-menu > li{border-left:1px solid #dddddd;}.gp-nav .gp-dropdown-icon{color:#f84103;}.gp-menu-tabs{background-color:#333;}.gp-nav .menu li .gp-menu-tabs li{color:#ffffff;}.gp-nav .menu li .gp-menu-tabs li:hover,.gp-nav .menu li .gp-menu-tabs li.gp-selected{color:#333333;}#gp-main-header .gp-search-bar{background-color:#eee;}#gp-main-header .gp-search-bar{border-top:1px solid #fff;border-bottom:1px solid #fff;border-left:1px solid #fff;border-right:1px solid #fff;}#gp-main-header .gp-search-bar{color:#000;font-size:12px;}#gp-main-header .gp-search-submit{background-color:transparent;}#gp-main-header .gp-search-submit:hover{background-color:transparent;}#gp-main-header .gp-search-submit{color:#f84103;font-size:12px;}#gp-main-header .gp-search-submit:hover{color:#f84103;}#gp-mobile-nav-button{color:#f84103;}#gp-mobile-nav{background-color:#000;}#gp-mobile-nav-close-button{background-color:#f84103;}#gp-mobile-nav li{color:#ffffff;}#gp-mobile-nav .menu > li > a{color:#f84103;}#gp-mobile-nav .menu > li > a:hover{color:#fff;}#gp-mobile-nav .sub-menu li a{color:#fff;}#gp-mobile-nav .sub-menu li a:hover{color:#f84103;}#gp-mobile-nav .megamenu > .sub-menu > li > a{color:#f84103;}#gp-mobile-nav li a:hover{background-color:#000;}#gp-mobile-nav li{border-top:1px solid #333333;}.gp-mobile-dropdown-icon{background-color:#1d1d1d;}li.gp-active > .gp-mobile-dropdown-icon{background-color:#333;}#gp-mobile-nav .gp-search-bar{background-color:#eee;}#gp-mobile-nav .gp-search-bar{border-top:1px solid #fff;border-bottom:1px solid #fff;border-left:1px solid #fff;border-right:1px solid #fff;}#gp-mobile-nav .gp-search-bar{color:#000;font-size:13px;}#gp-mobile-nav .gp-search-submit{background-color:transparent;}#gp-mobile-nav .gp-search-submit:hover{background-color:transparent;}#gp-mobile-nav .gp-search-submit{color:#f84103;font-size:13px;}#gp-mobile-nav .gp-search-submit:hover{color:#f84103;}.gp-page-header{background-color:#1c1c1c;background-repeat:no-repeat;background-attachment:scroll;background-position:center center;background-size:cover;}.gp-page-header .gp-entry-title,.gp-page-header .gp-entry-title a{line-height:52px;color:#fff;font-size:46px;}.gp-page-header .gp-subtitle{line-height:21px;color:#fff;font-size:15px;}.gp-page-header .gp-entry-title.gp-has-subtitle:after{border-top:1px solid #fff;}.gp-entry-title,.woocommerce .page-title,.woocommerce div.product .entry-title.product_title{line-height:48px;color:#000;font-size:36px;}.gp-subtitle{line-height:32px;color:#888;font-size:20px;}.gp-post-section-header h3,.woocommerce ul.products li.product h3,.woocommerce ul.products li.product .woocommerce-loop-product__title{color:#000000;}.gp-entry-meta,.gp-entry-meta a,.wp-caption-text,#gp-breadcrumbs,#gp-breadcrumbs a,.gp-theme.woocommerce-page .product_meta,.gp-theme.woocommerce-page .product_meta a{color:#B3B3B1;}.gp-entry-tags,.gp-entry-tags a{color:#B3B3B1;}.gp-author-info{background-color:#f8f8f8;}.gp-author-info{color:#000000;}.gp-author-info{border-bottom:1px solid #eee;}blockquote{background-color:#f84103;}blockquote,blockquote a,blockquote a:hover{font-family:"Open Sans",Arial, Helvetica, sans-serif;line-height:26px;font-weight:400;font-style:normal;color:#fff;font-size:16px;}.gp-loop-title{font-family:Arvo;line-height:26px;font-weight:400;font-style:normal;font-size:18px;}.gp-blog-large .gp-loop-title{line-height:42px;font-size:30px;}.gp-loop-title a,.gp-edit-review-form button,.gp-delete-review-form button{color:#f84103;}.gp-loop-title a:hover,.gp-edit-review-form button:hover,.gp-delete-review-form button:hover{color:#000;}.gp-loop-meta,.gp-loop-meta a{color:#B3B3B1;}.gp-entry-cats a,.gp-loop-cats a{background-color:#000;}.gp-entry-cats a,.gp-entry-cats a:hover,.gp-loop-cats a,.gp-loop-cats a:hover{color:#ffffff;}.gp-loop-tags,.gp-loop-tags a{color:#B3B3B1;}.gp-blog-masonry section{background-color:#1c1c1c;}.gp-blog-masonry .gp-loop-title a{color:#f84103;}.gp-blog-masonry .gp-loop-title a:hover{color:#fff;}.gp-blog-masonry .gp-loop-content{color:#ffffff;}.blog-masonry .entry-meta,.blog-masonry .entry-meta a{color:#B3B3B1;}.gp-blog-masonry .gp-loop-tags,.gp-blog-masonry .gp-loop-tags a{color:#B3B3B1;}.gp-blog-masonry section:before,.gp-blog-masonry .gp-post-thumbnail:before{background-color:#1c1c1c;}.gp-blog-masonry section:before,.gp-blog-masonry .gp-post-thumbnail:before{color:#ffffff;}.gp-post-thumbnail .gp-loop-title{line-height:26px;font-size:16px;}.gp-post-thumbnail .gp-loop-title,.gp-ranking-wrapper .gp-loop-title a{color:#fff;}.gp-post-thumbnail .gp-loop-title:hover,.gp-ranking-wrapper .gp-loop-title a:hover{color:#fff;}.gp-hub-award{background-color:#f84103;}ul.page-numbers .page-numbers{background-color:#333333;}ul.page-numbers .page-numbers:hover,ul.page-numbers .page-numbers.current,ul.page-numbers > span.page-numbers{background-color:#F84103;}ul.page-numbers .page-numbers{color:#ffffff;}.gp-hub-header,.gp-hub-header a,.gp-hub-header .gp-entry-meta,.gp-hub-header .gp-entry-meta a{color:#ffffff;}#gp-affiliate-button{background-color:#00D6EC;}#gp-affiliate-button:hover{background-color:#F84103;}#gp-affiliate-button{color:#ffffff;}#gp-hub-tabs{background-color:#1c1c1c;}#gp-hub-tabs{border-top:2px solid #f84103;}#gp-hub-tabs li{border-bottom:1px solid #323232;border-left:1px solid #323232;border-right:1px solid #323232;}#gp-hub-tabs li a,#gp-hub-tabs-mobile-nav-button{font-family:"Open Sans",Arial, Helvetica, sans-serif;line-height:21px;font-weight:600;font-style:normal;color:#fff;font-size:13px;}#gp-hub-tabs li a:hover,#gp-hub-tabs li.current_page_item a{background-color:#f84103;}#gp-hub-details{background-color:#1c1c1c;}#gp-hub-details,#gp-hub-details a,#gp-hub-details .gp-entry-title{color:#ffffff;}.gp-hub-child-page #gp-content .gp-entry-title{line-height:38px;color:#000;font-size:26px;}#gp-review-content-wrapper.gp-review-first-letter .gp-entry-text > p:first-child::first-letter,#gp-review-content-wrapper.gp-review-first-letter .gp-entry-text > *:not(p):first-child + p::first-letter,#gp-review-content-wrapper.gp-review-first-letter .gp-entry-text .vc_row:first-child .vc_column_container:first-child .wpb_wrapper:first-child .wpb_text_column:first-child .wpb_wrapper:first-child > p:first-child::first-letter{font-family:Arvo,Arial, Helvetica, sans-serif;line-height:100px;font-weight:400;font-style:normal;color:#F84102;font-size:100px;}#gp-review-summary{background-color:#1c1c1c;}#gp-review-summary{color:#ffffff;}#gp-points-wrapper .gp-good-points li i{color:#f84103;}#gp-points-wrapper .gp-bad-points li i{color:#5fa2a5;}#gp-review-summary .gp-rating-text,#gp-featured-wrapper .gp-rating-text,.gp-hub-header .gp-rating-text,#gp-homepage-slider .gp-rating-text,.gp-featured-wrapper .gp-rating-text,.gp-ranking-wrapper .gp-rating-text{color:#ffffff;}section .gp-rating-text{color:#000000;}.gp-your-rating,.gp-user-reviews-link:hover{color:#f84103;}section .gp-average-rating{background-color:#f84103;}.gp-rating-gauge .gp-site-rating-selection,.gp-rating-plain .gp-site-rating-selection{background-image:url('https://www.spiceworks.com/wp-content/themes/gauge/lib/images/site-rating-slider-rated.png');}.gp-rating-gauge .gp-site-rating-criteria-text, .gp-rating-plain .gp-site-rating-criteria-text{color:#ffffff;}#gp-sidebar .widgettitle,#gp-sidebar .widget-title,#gp-sidebar .wp-block-search__label{font-family:"Open Sans",Arial, Helvetica, sans-serif;line-height:22px;font-weight:600;font-style:normal;color:#000;font-size:14px;}.gp-element-title h3{color:#f84103;}.gp-see-all-link a{color:#000;}.gp-see-all-link a:hover{color:#f84103;}input,textarea,select,.gp-theme #buddypress .dir-search input[type=search],.gp-theme #buddypress .dir-search input[type=text],.gp-theme #buddypress .groups-members-search input[type=search],.gp-theme #buddypress .standard-form input[type=color],.gp-theme #buddypress .standard-form input[type=date],.gp-theme #buddypress .standard-form input[type=datetime-local],.gp-theme #buddypress .standard-form input[type=datetime],.gp-theme #buddypress .standard-form input[type=email],.gp-theme #buddypress .standard-form input[type=month],.gp-theme #buddypress .standard-form input[type=number],.gp-theme #buddypress .standard-form input[type=password],.gp-theme #buddypress .standard-form input[type=range],.gp-theme #buddypress .standard-form input[type=search],.gp-theme #buddypress .standard-form input[type=tel],.gp-theme #buddypress .standard-form input[type=text],.gp-theme #buddypress .standard-form input[type=time],.gp-theme #buddypress .standard-form input[type=url],.gp-theme #buddypress .standard-form input[type=week],.gp-theme #buddypress .standard-form textarea,.gp-theme #buddypress div.activity-comments form .ac-textarea,.gp-theme #buddypress form#whats-new-form textarea,.wp-block-search__input{background-color:#fff;}input,textarea,select,.gp-theme #buddypress .dir-search input[type=search],.gp-theme #buddypress .dir-search input[type=text],.gp-theme #buddypress .groups-members-search input[type=search],.gp-theme #buddypress .standard-form input[type=color],.gp-theme #buddypress .standard-form input[type=date],.gp-theme #buddypress .standard-form input[type=datetime-local],.gp-theme #buddypress .standard-form input[type=datetime],.gp-theme #buddypress .standard-form input[type=email],.gp-theme #buddypress .standard-form input[type=month],.gp-theme #buddypress .standard-form input[type=number],.gp-theme #buddypress .standard-form input[type=password],.gp-theme #buddypress .standard-form input[type=range],.gp-theme #buddypress .standard-form input[type=search],.gp-theme #buddypress .standard-form input[type=tel],.gp-theme #buddypress .standard-form input[type=text],.gp-theme #buddypress .standard-form input[type=time],.gp-theme #buddypress .standard-form input[type=url],.gp-theme #buddypress .standard-form input[type=week],.gp-theme #buddypress .standard-form textarea,.gp-theme #buddypress div.activity-comments form .ac-textarea,.bb-global-search-ac.ui-autocomplete,.gp-theme #bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content,.wp-block-search__input{border-top:1px solid #ddd;border-bottom:1px solid #ddd;border-left:1px solid #ddd;border-right:1px solid #ddd;}input,textarea,select,.gp-theme #buddypress .dir-search input[type=search],.gp-theme #buddypress .dir-search input[type=text],.gp-theme #buddypress .groups-members-search input[type=search],.gp-theme #buddypress .groups-members-search input[type=text],.gp-theme #buddypress .standard-form input[type=color],.gp-theme #buddypress .standard-form input[type=date],.gp-theme #buddypress .standard-form input[type=datetime-local],.gp-theme #buddypress .standard-form input[type=datetime],.gp-theme #buddypress .standard-form input[type=email],.gp-theme #buddypress .standard-form input[type=month],.gp-theme #buddypress .standard-form input[type=number],.gp-theme #buddypress .standard-form input[type=password],.gp-theme #buddypress .standard-form input[type=range],.gp-theme #buddypress .standard-form input[type=search],.gp-theme #buddypress .standard-form input[type=tel],.gp-theme #buddypress .standard-form input[type=text],.gp-theme #buddypress .standard-form input[type=time],.gp-theme #buddypress .standard-form input[type=url],.gp-theme #buddypress .standard-form input[type=week],.gp-theme #buddypress .standard-form textarea,.gp-theme #buddypress div.activity-comments form .ac-textarea,.wp-block-search__input{font-family:"Open Sans",Arial, Helvetica, sans-serif;font-weight:400;font-style:normal;color:#000;font-size:13px;}input[type="button"],input[type="submit"],input[type="reset"],button,.button,.wp-block-search__button,.gp-notification-counter,.gp-theme #buddypress .comment-reply-link,.gp-notification-counter,.gp-theme #buddypress a.button,.gp-theme #buddypress button,.gp-theme #buddypress div.generic-button a,.gp-theme #buddypress input[type=button],.gp-theme #buddypress input[type=reset],.gp-theme #buddypress input[type=submit],.gp-theme #buddypress ul.button-nav li a,a.bp-title-button,.gp-theme #buddypress .activity-list #reply-title small a span,.gp-theme #buddypress .activity-list a.bp-primary-action span,.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt,#gp-dropdowncart .woocommerce a.button{background-color:#F84103;}input[type="button"]:hover,input[type="submit"]:hover,input[type="reset"]:hover,button:hover,.button:hover,.wp-block-search__button:hover,.gp-theme #buddypress .comment-reply-link:hover,.gp-theme #buddypress a.button:hover,.gp-theme #buddypress button:hover,.gp-theme #buddypress div.generic-button a:hover,.gp-theme #buddypress input[type=button]:hover,.gp-theme #buddypress input[type=reset]:hover,.gp-theme #buddypress input[type=submit]:hover,.gp-theme #buddypress ul.button-nav li a:hover,a.bp-title-button:hover,.gp-theme #buddypress .activity-list #reply-title small a:hover span,.gp-theme #buddypress .activity-list a.bp-primary-action:hover span,.woocommerce #respond input#submit.alt:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce input.button.alt:hover,#gp-dropdowncart .woocommerce a.button:hover{background-color:#5fa2a5;}input[type="button"],input[type="submit"],input[type="reset"],button,.button,.wp-block-search__button,.gp-theme #buddypress .comment-reply-link,.gp-theme #buddypress a.button,.gp-theme #buddypress button,.gp-theme #buddypress div.generic-button a,.gp-theme #buddypress input[type=button],.gp-theme #buddypress input[type=reset],.gp-theme #buddypress input[type=submit],.gp-theme #buddypress ul.button-nav li a,a.bp-title-button,.gp-theme #buddypress .activity-list #reply-title small a span,.gp-theme #buddypress .activity-list a.bp-primary-action span,#gp-dropdowncart .woocommerce a.button{color:#ffffff;}input[type="button"]:hover,input[type="submit"]:hover,input[type="reset"]:hover,button:hover,.button:hover,.wp-block-search__button:hover,.gp-theme #buddypress .comment-reply-link:hover,.gp-theme #buddypress a.button:hover,.gp-theme #buddypress button:hover,.gp-theme #buddypress div.generic-button a:hover,.gp-theme #buddypress input[type=button]:hover,.gp-theme #buddypress input[type=reset]:hover,.gp-theme #buddypress input[type=submit]:hover,.gp-theme #buddypress ul.button-nav li a:hover,a.bp-title-button:hover,.gp-theme #buddypress .activity-list #reply-title small a span,.gp-theme #buddypress .activity-list a.bp-primary-action span,#gp-dropdowncart .woocommerce a.button:hover{color:#ffffff;}.gp-footer-widget .widgettitle,.gp-footer-widget .widget-title,.gp-footer-widget .wp-block-search__label{font-family:"Open Sans",Arial, Helvetica, sans-serif;line-height:22px;font-weight:400;font-style:normal;color:#fff;font-size:18px;}.gp-footer-widget{font-family:"Open Sans",Arial, Helvetica, sans-serif;line-height:23px;font-weight:400;font-style:normal;color:#fff;font-size:15px;}.gp-footer-larger-first-col .gp-footer-1 .widgettitle,.gp-footer-larger-first-col .gp-footer-1 .widget-title,.gp-footer-larger-first-col .gp-footer-1  .wp-block-search__label{font-family:"Open Sans",Arial, Helvetica, sans-serif;line-height:22px;font-weight:400;font-style:normal;color:#fff;font-size:18px;}.gp-footer-larger-first-col .gp-footer-1{font-family:"Open Sans",Arial, Helvetica, sans-serif;line-height:23px;font-weight:400;font-style:normal;color:#fff;font-size:15px;}.gp-footer-larger-first-col .gp-footer-1 a{color:#fff;}#gp-copyright{font-family:"Open Sans",Arial, Helvetica, sans-serif;line-height:16px;font-weight:400;font-style:normal;font-size:11px;}#gp-copyright a{color:#b7b4b4;}#gp-copyright a:hover{color:#ddd;}#gp-to-top{background-color:#007fa2;}#gp-to-top{color:#ffffff;}#buddypress .activity-list .activity-content .activity-header,#buddypress .activity-list .activity-content .comment-header,#buddypress .activity-list .activity-header a,#buddypress .activity-list div.activity-comments div.acomment-meta,#buddypress .activity-list .acomment-meta a,.widget.buddypress .item-title a,.widget.buddypress div.item-options.gp-small-item-options:before,.widget.buddypress div.item-options a,#buddypress ul.item-list li div.item-title a,#buddypress ul.item-list li h4 > a,#buddypress ul.item-list li h5 > a,#buddypress div#item-header div#item-meta{color:#000000;}#buddypress .activity-list a.activity-time-since,.widget_display_replies ul li a + div,.widget_display_topics ul li a + div,#buddypress .activity-list .activity-content .activity-inner,#buddypress .activity-list .acomment-meta a.activity-time-since,#buddypress .activity-list div.activity-comments div.acomment-content,.widget.buddypress div.item-meta,#buddypress span.activity,#buddypress ul.item-list li div.meta{color:#aaaaaa;}.gp-theme #buddypress .activity-list div.activity-meta a.button,.gp-theme #buddypress .activity .acomment-options a,.gp-theme #buddypress .activity-list li.load-more a,.gp-theme #buddypress .activity-list li.load-newest a,.widget.buddypress div.item-options a.selected{color:#e93100;}.gp-theme #buddypress .activity-list div.activity-meta a.button:hover,.gp-theme #buddypress .activity .acomment-options a:hover,.gp-theme #buddypress .activity-list li.load-more a:hover,.gp-theme #buddypress .activity-list li.load-newest a:hover,.widget.buddypress div.item-options a.selected:hover{color:#000;}.gp-theme #buddypress ul.item-list li,.gp-theme #buddypress div.activity-comments ul li:first-child,.widget.buddypress #friends-list li,.widget.buddypress #groups-list li,.widget.buddypress #members-list li,.gp-theme .bp-dynamic-block-container ul.item-list li{border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0;}.gp-theme #buddypress div.item-list-tabs{background-color:#000000;}.gp-theme #buddypress div.item-list-tabs ul li a span,.gp-theme #buddypress div.item-list-tabs ul li a:hover span,.gp-theme #buddypress div.item-list-tabs ul li.current a span,.gp-theme #buddypress div.item-list-tabs ul li.selected a span{color:#000000;}.gp-theme #buddypress div.item-list-tabs ul li a span{background-color:#b1b1b1;}.gp-theme #buddypress div.item-list-tabs ul li a, .gp-theme #buddypress #gp-bp-tabs-button, .gp-theme #buddypress div.item-list-tabs ul li span{color:#b1b1b1;}.gp-theme #buddypress div.item-list-tabs ul li.current a, .gp-theme #buddypress div.item-list-tabs ul li.selected a,.gp-theme #buddypress div.item-list-tabs ul li a:hover{color:#ffffff;}.gp-theme #buddypress div.item-list-tabs ul li a:hover span,.gp-theme #buddypress div.item-list-tabs ul li.current a span,.gp-theme #buddypress div.item-list-tabs ul li.selected a span{background:#ffffff;}.gp-theme #buddypress div.item-list-tabs#subnav ul, .widget.buddypress div.item-options.gp-small-item-options > a{background-color:#f8f8f8;}.gp-theme #buddypress div.item-list-tabs#subnav ul li a span,.gp-theme #buddypress div.item-list-tabs#subnav ul li a:hover span,.gp-theme #buddypress div.item-list-tabs#subnav ul li.current a span,.gp-theme #buddypress div.item-list-tabs#subnav ul li.selected a span{color:#f8f8f8;}.gp-theme #buddypress div.item-list-tabs#subnav ul li a span{background-color:#000000;}.gp-theme #buddypress div.item-list-tabs#subnav ul li a{color:#000000;}.gp-theme #buddypress div.item-list-tabs#subnav ul li.current a, .gp-theme #buddypress div.item-list-tabs#subnav ul li.selected a, .gp-theme #buddypress div.item-list-tabs#subnav ul li a:hover{color:#e93100;}.gp-theme #buddypress div.item-list-tabs#subnav ul li a:hover span,.gp-theme #buddypress div.item-list-tabs#subnav ul li.current a span,.gp-theme #buddypress div.item-list-tabs#subnav ul li.selected a span{background:#e93100;}#bbpress-forums .gp-forum-home.bbp-forums .bbp-has-subforums .bbp-forum-info > .bbp-forum-title,#bbpress-forums .bbp-topics .bbp-header,#bbpress-forums .bbp-replies .bbp-header,#bbpress-forums .bbp-search-results .bbp-header{background-color:#353535;}#bbpress-forums .gp-forum-home.bbp-forums .bbp-has-subforums .bbp-forum-info > .bbp-forum-title,#bbpress-forums .bbp-topics .bbp-header,#bbpress-forums .bbp-replies .bbp-header,#bbpress-forums .bbp-search-results .bbp-header{color:#ffffff;}#bbpress-forums .bbp-header div.bbp-reply-content a{color:#ddd;}#bbpress-forums .bbp-header div.bbp-reply-content a:hover{color:#fff;}#bbpress-forums .bbp-forums-list li.odd-forum-row,#bbpress-forums div.odd,#bbpress-forums ul.odd{background-color:#f8f8f8;}#bbpress-forums .bbp-forums-list li.even-forum-row,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff;}#bbpress-forums .gp-forum-home.bbp-forums .bbp-forum-info > .bbp-forum-title,#bbpress-forums div.bbp-forum-header,#bbpress-forums div.bbp-topic-header,#bbpress-forums div.bbp-reply-header,#bbpress-forums .bbp-forums-list,#bbpress-forums li.bbp-body{border-top:1px solid #ddd;border-bottom:1px solid #ddd;border-left:1px solid #ddd;border-right:1px solid #ddd;}#bbpress-forums .bbp-forums-list .bbp-forum .bbp-forum-link,body.forum #bbpress-forums .bbp-forums .bbp-forum-info > .bbp-forum-title,#bbpress-forums .bbp-topics .bbp-topic-permalink,#bbpress-forums .gp-forum-home.bbp-forums .bbp-forum-info > .bbp-forum-title{color:#000000;}#bbpress-forums div.bbp-forum-author .bbp-author-role,#bbpress-forums div.bbp-topic-author .bbp-author-role,#bbpress-forums div.bbp-reply-author .bbp-author-role{background-color:#e93100;}#bbpress-forums div.bbp-forum-author .bbp-author-role,#bbpress-forums div.bbp-topic-author .bbp-author-role,#bbpress-forums div.bbp-reply-author .bbp-author-role{color:#ffffff;}
        ]]>
        </style><noscript>
        <style>
        <![CDATA[
        .wpb_animate_when_almost_visible { opacity: 1; }
        ]]>
        </style></noscript>
        <meta name="zd_ptax_version" content="zdb2bV1" />
        <meta name="zd_ptax" content="Marketing Strategy" />
        <script async="async" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script><!-- Pogo and ZDConsent snippets starts-->
        <link rel="preload" href="https://cdn.ziffstatic.com/jst/zdconsent.js" as="script" />
        <script type="text/javascript">
        //<![CDATA[
        window.zdconsent = window.zdconsent || {'run': [], 'cmd':[], 'analytics':[], 'functional':[], 'social':[] };
        //]]>
        </script>
        <script type="text/javascript" src="https://cdn.ziffstatic.com/jst/zdconsent.js" async="true"></script>
        <link rel="preload" as="script" href="https://cdn.ziffstatic.com/pg/toolbox.js" />
        <script type="text/javascript" id="pogo" src="https://cdn.ziffstatic.com/pg/toolbox.js" async="true"></script>
        <link rel="preload" as="script" href="https://cdn.ziffstatic.com/pg/toolbox.prebid.js" />
        <link rel="preload" as="style" href="https://cdn.ziffstatic.com/pg/toolbox.css" onload="this.onload=null;this.rel='stylesheet'" />
        <link rel="preload" as="script" href="https://securepubads.g.doubleclick.net/tag/js/gpt.js" />
        <script type="text/javascript" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js" async="true"></script>
        <link rel="preload" href="https://cdn.static.zdbb.net/js/z0WVjCBSEeGLoxIxOQVEwQ.min.js" as="script" />
        <script type="text/javascript" src="https://cdn.static.zdbb.net/js/z0WVjCBSEeGLoxIxOQVEwQ.min.js" async="async"></script><!-- Pogo and ZDConsent snippets ends-->
        <!-- static pages css -->
        <!--<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="preload" as="font" type="font/woff2" />-->

        <script type="text/javascript">
        //<![CDATA[
        jQuery(document).ready(function() {
        jQuery('#prop-sw .prop-sw-icon').click(function() {
                 jQuery('.using-focus .prop-sw-wrapper').attr('style', 'display:block');
        jQuery('#prop-sw .prop-sw-wrapper a:last-child').addClass("keyfocout");
        });
        jQuery(".prop-sw-wrapper").focusout(function(){
        //alert('Hello World');
        jQuery('.using-focus .prop-sw-wrapper').attr('style', 'display:none'); // adding active class
        });
        jQuery(".join-login_change-view-link").focusout(function(e) {
                        jQuery(this).next('.join-login_modal_close').focus();
        //jQuery().focusin();
        });
        jQuery('.popular-insights-item').each(function() {
        jQuery(this).parents('.popular-section').show();
        });
        jQuery('.popular-list').each(function() {
        jQuery(this).parents('.popular-section').show();
        });
                });
        jQuery(document).ready(function() {
        jQuery('.lean-navbar-drawer__submenu-items li a, .lean-navbar-drawer__menu li a, .search-wrapper .trending-topics a, .prop-sw-wrapper a, .mo-openid-app-icons .horizontal a, .alm-btn-wrap .alm-load-more-btn a, .homepage-popular-listing a, .search-wrapper input, .prop-sw-link').attr('tabindex', '0');
        /*jQuery('.prop-sw-arrow').attr('role','button').attr('tabindex', '0');*/
        jQuery('.lean-navbar-drawer__submenu-items li').removeAttr('tabindex', '0');
        /*jQuery(".prop-sw-icon").replaceWith("<button class='prop-sw-icon' tabindex='0' type='button'><span class='prop-sw-icon-top-left'></span><span class='prop-sw-icon-top-right'></span><span class='prop-sw-icon-bot-left'></span><span class='prop-sw-icon-bot-right'></span></button>");*/
        jQuery("#prop-sw").appendTo($(".lean-navbar-drawer"));
        jQuery('.lean-navbar-drawer__submenu-items li:last-child').addClass('keyfocout');
        document.body.addEventListener('keydown', function(event) {
        if (event.keyCode === 9) {
        document.body.classList.add('using-focus');
        }
        });
        document.body.addEventListener('keydown', function(event) {
        if (event.keyCode === 27) {
        document.body.classList.remove('using-focus');
        }
        });
        document.body.addEventListener('click', function(event) {
        if (event.button == 0) {
        document.body.classList.remove('using-focus');
        }
        });
        jQuery(".prop-sw-icon").focus(function(){
        jQuery(this).addClass("prop-sw-icon-active"); // adding active class
        jQuery('.prop-sw-arrow').addClass("prop-sw-arrow-active"); // adding active class
        });
        jQuery(".prop-sw-icon").focusout(function(){
        jQuery(this).removeClass("prop-sw-icon-active"); // adding active class
        jQuery('.prop-sw-arrow').removeClass("prop-sw-arrow-active"); // adding active class
        });

        $(document).keydown(function(e) {
        if (e.keyCode == 9) {
                        /*jQuery(".lean-navbar-drawer__submenu").focus(function(){
                            jQuery(this).addClass("lean-navbar-drawer__submenu--open"); // adding active class
                        });*/
                        jQuery(".lean-navbar-drawer__submenu-items li.keyfocout").focusout(function(){
                            jQuery(".lean-navbar-drawer__submenu").removeClass("lean-navbar-drawer__submenu--open"); // adding active class
                        });
        }
        });
        document.addEventListener('keyup', function(event) {
        if (event.key === 'Escape') {
        jQuery(".lean-navbar-drawer__submenu").removeClass("lean-navbar-drawer__submenu--open"); // adding active class
        }
        });
        jQuery('.lean-navbar-drawer__submenu, .mo-openid-app-icons .horizontal a, .alm-load-more-btn, .prop-sw-icon, .prop-sw-arrow, .gp-entry-text img').keypress(function(event) {
        if (event.keyCode === 13) {
        jQuery(this).click();
        }
        });
        jQuery('.prop-sw-footer:last-child').focusout(
        function () {
        jQuery('.prop-sw-wrapper').addClass('hidden');
        }
        );
        function switchTag(e, toTag) {
        var outerHTML = e.outerHTML;
        outerHTML = outerHTML.replace(/^<([a-z])(.*?)>(.*?)<\/\1>$/ig, "<" + toTag + "$2>$3</" + toTag + ">");
        e.outerHTML = outerHTML;
        };
        /*$('.gp-entry-text b, .as-main b, .entry-content b').replaceWith(function() {
        //return $('<strong>').append($(this).html())
        switchTag(this, "strong");
        });
        $('.gp-entry-text i, .as-main i, .entry-content i, .wpb-content-wrapper i').replaceWith(function() {
        //return $('<em>').append($(this).html())
        switchTag(this, "em");
        });*/
        $('.right-section-1 h3').replaceWith(function() {
        return $('<h2>').append($(this).html())
        });
        $('.gp-entry-text').find('tr:first-child td').each(function() {
        $(this).replaceWith($('<th>' + $(this).html() + '</th>'));
        });
        });
        //]]>
        </script>
        <script type="text/javascript">
        //<![CDATA[
        window.COMMUNITY_URL = 'https://community.spiceworks.com';
        window.IDENTITY_URL = 'https://accounts.spiceworks.com';
        window.NEWS_INSIGHT_URL = 'https://www.spiceworks.com';
        /*jQuery(document).ready(function() {
          jQuery("#description a").filter(function() {
        return this.hostname && this.hostname !== location.hostname;
        }).addClass('external-link').append('<span class="external-link-icon" style="font-size:0px;line-height: 0px;"><em class="fas fa-external-link-alt" aria-hidden="true"></em>Opens a new window</span>');
          jQuery('.external-link').attr('title', 'Opens a new window');
        });*/
        jQuery('a.site-footer_link.site-footer_brand').append('Footer Logo');
        //]]>
        </script>
        <script src="https://edge.spiceworksstatic.com/service.identity/vite/assets/global-nav.js" crossorigin="anonymous" type="module" defer="defer"></script>
        <style>
        <![CDATA[
                        .gp-page-header .gp-container {
                        padding-top: 10px!important;
                        }
        ]]>
        </style>
        <style>
        <![CDATA[
        #block-6, #block-4{display: contents !important;}       
        .marquee-main {background-color:#007495;text-align:center;margin-top:0px;display: table;width: 100%;}
        .marquee-main h3 {font-size: 29px;line-height: 35px;color: #fff!important;padding: 16px 15px 16px;font-weight: 500;margin:0px 0px;}
        .marquee-main h3 a {text-decoration:underline;color:#fff;}
        .marquee-main h3 a:hover {text-decoration:none;color:#fff;}
        .marquee-main .widget, .marquee-main .widget_block {margin: 0px;}
        @media(max-width:767px) {
        .marquee-main h3 {font-size: 26px;line-height: 34px;color: #fff;padding: 15px 15px 8px;font-weight: 500;}
        }
        @media only screen and (max-width: 600px) {
        .ee_editable h1, h1.ee_editabl{line-height: 1.2 !important;}
        }
        @media(min-width:1024px) {
        .gp-page-header, .desk-header {min-height: 291px !important;}
        }
        .custom-pagination {text-align:center;width:100%}
        .custom-pagination .nav-links-cate span.page-numbers.current{border-bottom:2px solid #FF7F32;border-right:1px solid #fff;border-left:1px solid #fff;border-top:1px solid #fff;color:#FF7F32 !important;font-weight:bold;}
        .custom-pagination .nav-links-cate a.page-numbers,.custom-pagination .nav-links-cate span.page-numbers.current{background:#fffe;padding:1px 10px;font-size:16px;color:#080809;display:inline-block;margin:0 3px;vertical-align:top;}
        .custom-pagination .nav-links-cate a.page-numbers{border:1px solid silver}
        .custom-pagination .nav-links-cate a.page-numbers.next, .custom-pagination .nav-links-cate a.page-numbers.prev{border:0}
        .custom-pagination a.prev.page-numbers:before{content:"\f053";font-family:'FontAwesome';color:#666;font-size:13px;padding:2px 5px 2px 0;line-height:18px}
        .custom-pagination a.next.page-numbers:after{content:"\f054";font-family:'FontAwesome';color:#666;font-size:13px;padding:2px 0 2px 5px;line-height:18px}
        .custom-pagination .nav-links-cate a.page-numbers:hover {border-bottom: 2px solid #FF7F32;border-right: 1px solid #fff;border-left: 1px solid #fff;border-top: 1px solid #fff;font-weight: bold;color: #FF7F32 !important;}
        .custom-pagination .nav-links-cate a.page-numbers.next:focus:after, .custom-pagination .nav-links-cate a.page-numbers.prev:focus:before {color: #FF7F32 !important;border:0px !important;}
        .custom-pagination .nav-links-cate a.page-numbers.next:focus, .custom-pagination .nav-links-cate a.page-numbers.prev:focus {border:0px !important;}
        .custom-pagination .nav-links-cate a.prev.page-numbers {padding: 1px 0px;margin-right: 10px;border-bottom: 2px solid #fff;border-right: 1px solid #fff;border-left: 1px solid #fff;border-top: 1px solid #fff;}
        .custom-pagination .nav-links-cate a.next.page-numbers {padding: 1px 0px;margin-left: 10px;border-bottom: 2px solid #fff;border-right: 1px solid #fff;border-left: 1px solid #fff;border-top: 1px solid #fff;}
        .custom-pagination .nav-links-cate a.prev.page-numbers:hover, .custom-pagination .nav-links-cate a.next.page-numbers:hover {font-weight: 500;}
        ]]>
        </style>
        <style type="text/css">
        /*<![CDATA[*/
                                #gp-content-wrapper.gp-container > #gp-content {padding: 0px 0;} a{color: #65BA2D;}
                                input[type="submit"] {background-color: #65BA2D !important;}
                                .new_recommended_reads {display: table;width: 100%;background: #fff;position: relative;z-index: 5;}
        /*]]>*/
        </style>
        <style type="text/css">
        /*<![CDATA[*/
        .ArticleMain-lead{margin-top: 40px !important} .ArticleMain-lead img{ width: 800px;}
        /*]]>*/
        </style>
        <style type="text/css">
        /*<![CDATA[*/

                                                        .social-share-bottom{padding-bottom: 40px}
        /*]]>*/
        </style>
        <style type="text/css">
        /*<![CDATA[*/
                                        .left-content-home{top: 20px !important;}
                                        .i-amphtml-layout-size-defined .i-amphtml-fill-content{margin-top: 30px !important}
        /*]]>*/
        </style>
        <style>
        <![CDATA[
                                        @media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
                                        .popular-section{margin-top:280px!important}
                                        }       
                                        @media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
                                                .popular-section{margin-top:320px!important}
                                        }
                                        .survey-option span {background: #007FA2;width: 100%;padding: 9px 12px;border-radius: 3px;}
        ]]>
        </style>
        <style>
        <![CDATA[
        .feedc{color:black !important;}.coc{color: #007FA2!important; border: 1px solid; padding: 10px; border-radius:5px; margin-bottom:10px;}
        ]]>
        </style>
    </head>
    <body data-template="news" data-category="Marketing" data-tags="Marketing Strategy" class="news-template-default single single-news postid-92884 single-format-standard gp-theme gp-responsive gp-wide-layout gp-retina gp-normal-scrolling gp-back-to-top-desktop gp-fixed-header gp-header-resize gp-header-standard gp-header-overlay gp-top-header gp-cart-all gp-search-enabled gp-large-title gp-right-sidebar wpb-js-composer js-comp-ver-7.9 vc_responsive">
        <script type="text/javascript">
        //<![CDATA[
        var __zddecc = __zddecc || {};
        //]]>
        </script> 
        <script src="//zdstatic.spiceworks.com/decc/www_sw.js" async="async"></script> <!-- Google Tag Manager (noscript) -->
        <noscript><iframe aria-label="googletagmanager" aria-hidden="true" src="https://www.googletagmanager.com/ns.html?id=GTM-PGLF8G" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) -->
         <!-- NEW Google Tag Manager (noscript) -->
        <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KTKRL68F" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- NEW End Google Tag Manager (noscript) -->
         
        <script type="text/javascript">
        //<![CDATA[

        jQuery(document).ready(function(){
          jQuery('.lean-navbar-drawer').attr('role', 'navigation');
          jQuery('form').attr('role', 'form');
          jQuery('.as-main .author-thumnail a, .author-details a, .gp-entry-text img').attr('tabindex', '0');
          jQuery('.lean-navbar-drawer').attr('id', 'topMenu');
          jQuery('.gp-page-header.gp-standard-header').attr('role', 'banner');
        jQuery('#skiptocontent').hide();
        jQuery('#skiptocontent').delay(3000).fadeIn(100);
        });
        //]]>
        </script>
        <main role="main" id="layout">
            <div id="gp-site-wrapper">
                <div id="skiptocontent" style="display:none">
                    <div class="container">
                        <a href="#topMenu">Skip to Main Navigation</a> <a href="#gp-content">Skip to Main Content</a> <a href="#footer-main">Skip to Footer</a>
                    </div>
                </div>
                <div id="gp-page-wrapper">
                    <!--community navbar starts -->
                    <div class="lean-navbar">
                        <!-- insert lean nav mobile trigger button here -->
                         <span class="lean-navbar-header__actions"> <span class="lean-navbar-header__drawer-trigger lean-navbar-header__drawer-trigger--loading"> </span></span> <!-- insert spiceworks logo here -->
                         <!-- spiceworks logo -->
                        <div class="lean-navbar-header">
                            <a href="https://www.spiceworks.com" class="lean-navbar-header__spiceworks-icon">Home</a>
                        </div><!-- insert avatar/user menu base state here (only if user is logged in) -->
                        <nav class="lean-navbar-drawer">
                            <!-- insert navigation menus here (using id service response) -->
                            <ul class="lean-navbar-drawer__menu">
                                <li class="lean-navbar-drawer__submenu">
                                    <div class="lean-navbar-drawer__submenu-title" data-lean-navbar-trigger="submenu">
                                        <span class="lean-navbar-drawer__submenu-back-button"></span> <a href="#" tabindex="0" class="NIC-menu lean-navbar-drawer__submenu-title--without-link">News &amp; Insights </a>
                                    </div>
                                    <ul class="lean-navbar-drawer__submenu-items">
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-header" href="https://www.spiceworks.com/news-insights/">News &amp; Insights Home</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/tech/artificial-intelligence/">Artificial Intelligence</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/tech/innovation/">Innovation</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/tech/it-careers-skills/">IT Careers &amp; Skills</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/tech/cloud">Cloud</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/it-security/cyber-risk-management/">Cyber Security</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/hr/future-work/">Future of Work</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/sitemap/">All Categories</a>
                                        </li>
                                    </ul>
                                </li>
                                <li class="lean-navbar-drawer__submenu">
                                    <div class="lean-navbar-drawer__submenu-title" data-lean-navbar-trigger="submenu">
                                        <span class="lean-navbar-drawer__submenu-back-button"></span> <a href="#" tabindex="0" class="NIC-menu lean-navbar-drawer__submenu-title--without-link">Community </a>
                                    </div>
                                    <ul class="lean-navbar-drawer__submenu-items">
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-header" href="https://community.spiceworks.com/">Community Home</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/cloud-computing-saas/8">Cloud</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/collaboration/9">Collaboration</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/hardware/15">Hardware</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/networking/23">Networking</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/programming-development/26">Programming</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/security/28">Security</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/software/29">Software</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/data-storage-backup-recovery/10">Storage</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/vendors/38">Vendors</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/virtualization/39">Virtualization</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/c/windows/41">Windows</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://community.spiceworks.com/categories">All Categories</a>
                                        </li>
                                    </ul>
                                </li>
                                <li class="lean-navbar-drawer__submenu">
                                    <div class="lean-navbar-drawer__submenu-title" data-lean-navbar-trigger="submenu">
                                        <span class="lean-navbar-drawer__submenu-back-button"></span> <a href="#" tabindex="0" class="NIC-menu lean-navbar-drawer__submenu-title--without-link">Research </a>
                                    </div>
                                    <ul class="lean-navbar-drawer__submenu-items">
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-header" href="https://www.spiceworks.com/research/">Research Home</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/research/it-report/">State of IT 2025 Report</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/research/it-spend-report/">IT Spend Report</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/research/customer-experience-report/">Customer Experience Report</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/research/ai-future-workplace-report/">Workplace Tech Report</a>
                                        </li>
                                    </ul>
                                </li>
                                <li class="lean-navbar-drawer__submenu">
                                    <div class="lean-navbar-drawer__submenu-title" data-lean-navbar-trigger="submenu">
                                        <span class="lean-navbar-drawer__submenu-back-button"></span> <a href="#" tabindex="0" class="NIC-menu lean-navbar-drawer__submenu-title--without-link">IT Tools </a>
                                    </div>
                                    <ul class="lean-navbar-drawer__submenu-items">
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/free-cloud-help-desk-software">Cloud Help Desk</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/tools/remote-support/">Remote Support</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/free-pc-network-inventory-software/">Inventory Online</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://apps.spiceworks.com/tools/contracts/">Contracts</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/free-network-troubleshooting-tool">Connectivity Dashboard</a>
                                        </li>
                                        <li>
                                            <a class="lean-navbar-drawer__submenu-item lean-navbar-drawer__submenu-item-link" href="https://www.spiceworks.com/tools">All IT Tools</a>
                                        </li>
                                    </ul>
                                </li>
                                <li class="lean-navbar-drawer__submenu">
                                    <div class="lean-navbar-drawer__submenu-title" data-lean-navbar-trigger="submenu">
                                        <span class="lean-navbar-drawer__submenu-back-button"></span> <a class="lean-navbar-drawer__submenu-title--link" href="https://accounts.spiceworks.com/pages/newsletters">Newsletters</a>
                                    </div>
                                </li>
                                <li class="lean-navbar-drawer__submenu">
                                    <div class="lean-navbar-drawer__submenu-title" data-lean-navbar-trigger="submenu">
                                        <span class="lean-navbar-drawer__submenu-back-button"></span> <a class="lean-navbar-drawer__submenu-title--link" href="https://www.spiceworks.com/spiceworld/">SpiceWorld</a>
                                    </div>
                                </li>
                            </ul><!-- insert search box base state here-->
                            <div class="search-wrapper">
                                <!--
                <form role="form" class="searchbox">
                        <span class="searchbox-icon searchbox-ipad" style="display:none;"><i class="fa fa-search" aria-hidden="true"></i></span>
                        <div class="searchBox-fakeInput">
                                <div class="searchBox-inputWrapper">
                                        <i class="mag-glass"></i>
                                        <input class="search-input search-input-spiceworks sr-input form-control searchBox-input" autocomplete="off" maxlength="1500" placeholder="Search Spiceworks" id="search-input-spiceworks" required></input>
                                        <div class="searchBox-clearWrapper">

                                        <span class="searchBox-clear-q"><button type="reset" class="btn searchClear" tabindex="0"><i class="fa fa-times"></i></button></span>
                                                <label class="search-icon">
                                                        <input type="submit" value="" class="" tabindex="0">
                                                        <i class="fa fa-search" aria-hidden="true"></i>
                                                </label>
                                </div>
                                </div>
                        </div>
                        <span class="searchBox-clear js-clearSearchBox"><i class="fa fa-times"></i></span>
                        <div class="trending-topics" style="display:none;"></div>
                        <div class="search-box-results"></div>
                </form>
                -->
                                <form>
                                    <input class="search-input" autocomplete="off" placeholder="Search Spiceworks" disabled="disabled" />
                                    <div class="search-box-results"></div>
                                </form>
                            </div><!-- insert guest actions inside drawer base state here (only if user is guest) -->
                            <div class="lean-navbar-inside-drawer lean-navbar-drawer__user-actions lean-navbar-drawer__user-actions--logged-out">
                                <a href="https://accounts.spiceworks.com/sign_in/?referrer_source=newsinsights&amp;referrer_reference=topnav&amp;referer=https%3A%2F%2Fwww.spiceworks.com%2Fmarketing%2Fmarketing-strategy%2Fnews%2Frewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform%2F&amp;success=https%3A%2F%2Fwww.spiceworks.com%2Fmarketing%2Fmarketing-strategy%2Fnews%2Frewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform%2F" rel="nofollow" class="lean-navbar-drawer__login-button">Login<!-- insert login text here --></a> <a href="https://accounts.spiceworks.com/join/?referrer_source=newsinsights&amp;referrer_reference=topnav&amp;referer=https%3A%2F%2Fwww.spiceworks.com%2Fmarketing%2Fmarketing-strategy%2Fnews%2Frewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform%2F" rel="nofollow" class="lean-navbar-drawer__join-button">Join<!-- insert join text here --></a>
                            </div>
                        </nav><!-- insert guest actions outside drawer base state here (only if user is guest) -->
                        <div class="lean-navbar-outside-drawer lean-navbar-drawer__user-actions lean-navbar-drawer__user-actions--logged-out">
                            <a href="https://accounts.spiceworks.com/sign_in/?referrer_source=newsinsights&amp;referrer_reference=topnav&amp;referer=https%3A%2F%2Fwww.spiceworks.com%2Fmarketing%2Fmarketing-strategy%2Fnews%2Frewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform%2F&amp;success=https%3A%2F%2Fwww.spiceworks.com%2Fmarketing%2Fmarketing-strategy%2Fnews%2Frewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform%2F" rel="nofollow" class="lean-navbar-drawer__login-button">Login<!-- insert login text here --></a> <a href="https://accounts.spiceworks.com/join/?referrer_source=newsinsights&amp;referrer_reference=topnav&amp;referer=https%3A%2F%2Fwww.spiceworks.com%2Fmarketing%2Fmarketing-strategy%2Fnews%2Frewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform%2F" rel="nofollow" class="lean-navbar-drawer__join-button">Join<!-- insert join text here --></a>
                        </div>
                    </div>
                    <div id="join-login-modal-wrapper" class="join-login-wrapper"></div><!--community navbar ends-->
                    <!-- header bar elements and ad's script moved to GTM -->
                    <div class="marquee-main">
                        <script type="text/javascript">
                        //<![CDATA[
                        jQuery(document).ready(function () {
                        jQuery(".custom-pagination .nav-links-cate a.prev:contains('« Previous')").each(function () {
                                jQuery(this).html($(this).html().replace("« Previous", "Previous"));
                        });
                        jQuery(".custom-pagination .nav-links-cate a.next:contains('Next »')").each(function () {
                                jQuery(this).html($(this).html().replace("Next »", "Next"));
                        });
                        });
                        //]]>
                        </script>
                    </div>
                    <header class="gp-page-header gp-standard-header" role="banner">
                        <div class="gp-container">
                            <div data-pogo="top"></div>
                        </div>
                    </header>
                    <div id="gp-content-wrapper" class="gp-container gp-container-1">
                        <hr />
                        <div id="gp-content">
                            <div class="col-md-12 nopadding">
                                <div class="col-md-8 article-content">
                                    <div class="show-category">
                                        <a class="content-page-article-topic-top" href="https://www.spiceworks.com/marketing/marketing-strategy/" rel="dofollow" data-cms-ai="0">Marketing Strategy</a>
                                    </div>
                                    <div class="MixedUseItem-headline">
                                        <h1 id="title" class="ArticleMain-headline article-title" rel="dofollow" data-cms-ai="0">
                                            Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform
                                        </h1>
                                    </div>
                                    <article class="post-92884 news type-news status-publish format-standard has-post-thumbnail topic-marketing-strategy">
                                        <meta itemtype="https://schema.org/WebPage" content="https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/" />
                                        <meta content="Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform" />
                                        <div>
                                            <meta content="https://images.spiceworks.com/ad/93/9f099ec74374a67121155d25f38a/viyard.jpg" />
                                            <meta content="300" />
                                            <meta content="300" />
                                        </div>
                                        <meta content="" />
                                        <meta content="2020-07-10" />
                                        <meta content="2025-01-07" />
                                        <div>
                                            <div>
                                                <meta content="https://www.spiceworks.com/wp-content/uploads/2022/11/spiceworkslogo.png" />
                                                <meta content="220" />
                                                <meta content="69" />
                                            </div>
                                            <meta content="Spiceworks Inc" />
                                        </div>
                                        <div class="gp-post-thumbnail gp-entry-featured"></div>
                                        <div class="as-main">
                                            <div class="col-lg-9 col-md-9 col-sm-9 col-xs-12 author-details-8">
                                                <div class="multiple-author1">
                                                    <div class="gp-entry-meta single-author">
                                                        <span class="author-thumnail"><a href="https://www.spiceworks.com/user/about//" data-cms-ai="0" title=""><img src="https://images.spiceworks.com/100x100/wp-content/uploads/2021/07/15111206/Default-Pic-150x150.png" alt="" class="author-thum-img" width="40" height="40" /></a></span>
                                                    </div>
                                                </div>
                                            </div>
                                            <div class="col-md-3 col-sm-3 author-details-4">
                                                <div datetime="2025-01-07T09:08:22+00:00">
                                                    <em>Last Updated:</em> January 7, 2025
                                                </div>
                                            </div>
                                            <hr class="author-hr" />
                                        </div>
                                        <div class="col-md-1 col-sm-1 social-share-icons">
                                            <div class="mo-openid-app-icons circle">
                                                <p style="margin-top:4% !important; margin-bottom:0px !important; color:#000000"></p>
                                                <div class="horizontal">
                                                    <a rel="nofollow" title="facebook" onclick="popupCenter(&quot;https://www.facebook.com/sharer/sharer.php?u=https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/&amp;src=sdkpreparse&quot;, 800, 500);" class="mo-openid-share-link" style="margin-left : -2px !important"></a><a rel="nofollow" title="twitter" onclick="popupCenter(&quot;https://twitter.com/intent/tweet?text=Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform&amp;url=https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/&quot;, 800, 500);" class="mo-openid-share-link" style="margin-left : -2px !important"></a><a rel="nofollow" title="linkedin" onclick="popupCenter(&quot;https://www.linkedin.com/shareArticle?mini=true&amp;title=Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform&amp;url=https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/&amp;summary=&quot;, 800, 500);" class="mo-openid-share-link" style="margin-left : -2px !important"></a>
                                                </div>
                                            </div><br />
                                            <script>
                                            <![CDATA[
                                            function popupCenter(pageURL, w,h) {var left = (screen.width/2)-(w/2);var top = (screen.height/2)-(h/2);var targetWin = window.open (pageURL, '_blank','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);}function pinIt(){var e = document.createElement("script");e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','https://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);
                                            document.body.appendChild(e);}
                                            ]]>
                                            </script>
                                        </div>
                                        <div class="col-md-11 col-sm-11 article-description">
                                            <div class="ArticleMain-lead1" id="article-featured-img"></div>
                                            <div class="gp-entry-content aligmentchange gp-">
                                                <div id="description" class="gp-entry-text">
                                                    <!--?xml encoding="utf-8" ?-->
                                                    <p>
                                                        <br />
                                                    </p><strong><em>Vidyard Launches New Tools and Features for Businesses</em></strong>
                                                    <p>
                                                        Vidyard announced significant updates to its video hosting platform and tools yesterday. The company that provides video platforms for businesses <a href="https://www.vidyard.com/press-releases/vidyard-redesigns-video-hosting-platform-and-launches-new-tools/" title="Opens a new window" target="_blank">said<span class="external-link-icon">Opens a new window </span></a> that the new product lineup was introduced in response to brands’ rapidly increasing reliance on videos to reach and engage remote audiences. In light of COVID-19 and resulting changes in the way we work, live, and buy – videos are no longer just a marketing tool, they are critical for employee engagement, prospecting, and sales.
                                                    </p>
                                                    <p>
                                                        Key changes to Vidyard’s platform include new integration with Zoom, redesign of its video hosting platform, and enterprise video platform services. It is interesting to see that the company is offering business-grade video hosting, creation, sharing, and measurement capabilities for free to all users.
                                                    </p>
                                                    <p>
                                                        Learn More: <a href="https://www.spiceworks.com/marketing/content-marketing/guest-article/video-marketing-101-4-basics-marketers-cant-miss/">Video Marketing 101: 4 Basics Marketers Can’t Miss</a>
                                                    </p>
                                                    <p>
                                                        “Businesses are quickly evolving their sales, marketing, and communications strategies to align with a digital-first communication world,” says Michael Litt, co-founder and CEO of Vidyard. “Video is a huge part of that as it’s simply more efficient, more expressive, and more effective than standard text. Today’s businesses need a simpler, smarter, and more scalable way to put the power of video into their people’s hands. We’re excited to deliver on that need with a new breed of video creation and hosting solutions that turn any business professional into a video creator and any organization into a video-first business.”
                                                    </p>
                                                    <p>
                                                        The company witnessed a 400&amp;percnt; increase in new monthly sign-ups of its online screen recording and <a href="https://www.spiceworks.com/marketing/marketing-strategy/articles/five-hot-video-marketing-tools-coming-soon/">video creation tool</a> since March 1, 2020. With this release, Vidyard has launched some innovative new features on its platform such as online video recording and sharing that allow users to create and collaborate on video creation. It has also introduced new mobile apps to enable marketers to create and share customer videos from anywhere or on the go. New launches include:
                                                    </p>
                                                    <ul>
                                                        <li>Vidyard android app and Updated iOS app: These apps have been designed to help marketers and professionals record and share videos from anywhere. The apps allow users to quickly record videos while on the go and immediately share them through a company-branded video page. The mobile apps and the online video recording tool connect to the same video libraries, making it seamless for users to transition between desktop and mobile with continuous access to all video recordings.
                                                        </li>
                                                        <li>Comments and reply features: Viewers can now leave a comment or reply to videos shared by professionals using Pro, Teams, Business, and Enterprise tier offerings. Video posters/sharers receive comment notifications to enable quicker replies – thereby turning any video into a collaboration tool.
                                                        </li>
                                                        <li>Improved security features: Vidyard now offers users of Pro, Teams, and Business plans to secure viewer access to private videos through custom passwords. Customers can also use single sign-on (SSO) to ensure private videos created and shared by internal users can be viewed by other employees within the organization.
                                                        </li>
                                                        <li>Revamped UX: Vidyard makes it easier for users to generate transcripts, add closed captions, customize video thumbnail, set viewing permissions, and publish content across public and private channels. The company says it has made it easier for beginner video creators to create professional-grade videos easily.
                                                        </li>
                                                    </ul>
                                                    <p>
                                                        Learn More: <a href="https://www.spiceworks.com/marketing/content-marketing/articles/seven-tips-for-repurposing-video-content/">Seven Tips for Repurposing Video Content</a>
                                                    </p>
                                                    <h2>
                                                        Video is the Ultimate Engagement Tool for Marketers in 2020
                                                    </h2>
                                                    <p>
                                                        With people confined to their homes for the last three to four months, our social lives have moved online, and video consumption has risen notably within the at-home segments of television, gaming, education, OTT, and business content.
                                                    </p>
                                                    <p>
                                                        Consumer behavior is rapidly evolving as the world adjusts to the new normal. The emergence of trends, such as social distancing, work-from-home, and virtual meetings have increased the demand for at-home digital media.
                                                    </p>
                                                    <p>
                                                        Video platforms like Vidyard are looking to accelerate consumer habit-formation through the ease of access and intuitive interfaces. What does this mean for marketers? It is no secret that videos are the most engaging tool available to marketers today. However, barriers such as video production, screen recording, and easy sharing had traditionally prevented marketers from unlocking the real potential of digital videos.
                                                    </p>
                                                    <p>
                                                        With the introduction of smart video platforms, marketers can leverage the format to not only engage customers and drive sales, but also share access with other business functions within the organization, like HR and finance, who can also use it as an employee-facing tool.
                                                    </p>
                                                </div>
                                                <div id="description_fr" class="gp-entry-text" style="display: none;"></div>
                                                <div id="description_de" class="gp-entry-text" style="display: none;"></div>
                                            </div><!--  -->
                                            <div class="article-tags">
                                                <div class="tag-listing">
                                                    <!--  -->
                                                </div>
                                            </div>
                                            <div class="social-share-bottom">
                                                <h4 class="share-title">
                                                    Share This Article:
                                                </h4>
                                                <div class="mo-openid-app-icons circle">
                                                    <p style="margin-top:4% !important; margin-bottom:0px !important; color:#000000"></p>
                                                    <div class="horizontal">
                                                        <a rel="nofollow" title="facebook" onclick="popupCenter(&quot;https://www.facebook.com/sharer/sharer.php?u=https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/&amp;src=sdkpreparse&quot;, 800, 500);" class="mo-openid-share-link" style="margin-left : -2px !important"></a><a rel="nofollow" title="twitter" onclick="popupCenter(&quot;https://twitter.com/intent/tweet?text=Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform&amp;url=https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/&quot;, 800, 500);" class="mo-openid-share-link" style="margin-left : -2px !important"></a><a rel="nofollow" title="linkedin" onclick="popupCenter(&quot;https://www.linkedin.com/shareArticle?mini=true&amp;title=Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform&amp;url=https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/&amp;summary=&quot;, 800, 500);" class="mo-openid-share-link" style="margin-left : -2px !important"></a>
                                                    </div>
                                                </div><br />
                                                <script>
                                                <![CDATA[
                                                function popupCenter(pageURL, w,h) {var left = (screen.width/2)-(w/2);var top = (screen.height/2)-(h/2);var targetWin = window.open (pageURL, '_blank','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);}function pinIt(){var e = document.createElement("script");e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','https://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);
                                                document.body.appendChild(e);}
                                                ]]>
                                                </script>
                                            </div>
                                            <script>
                                            <![CDATA[
                                            jQuery(document).ready(function() {
                                                // For the top social share icons
                                                jQuery('.social-share-icons .mo-openid-share-link[title="facebook"]').addClass('content-page-social-facebook-top');
                                                jQuery('.social-share-icons .mo-openid-share-link[title="twitter"]').addClass('content-page-social-x-top');
                                                jQuery('.social-share-icons .mo-openid-share-link[title="linkedin"]').addClass('content-page-social-linkedin-top');
                                                // For the bottom social share icons
                                                jQuery('.social-share-bottom .mo-openid-share-link[title="facebook"]').addClass('content-page-social-facebook-bottom');
                                                jQuery('.social-share-bottom .mo-openid-share-link[title="twitter"]').addClass('content-page-social-x-bottom');
                                                jQuery('.social-share-bottom .mo-openid-share-link[title="linkedin"]').addClass('content-page-social-linkedin-bottom');
                                            });
                                            ]]>
                                            </script>
                                            <div class="row take-me-to-community">
                                                <div class="col-md-2 col-sm-2">
                                                    <img src="https://www.spiceworks.com/wp-content/uploads/2022/03/spot-illustration.png" alt="Take me to Community" width="100" height="101" />
                                                </div>
                                                <div class="col-md-10 col-sm-10">
                                                    <span>Do you still have questions? Head over to the Spiceworks Community to find answers.</span><br />
                                                    <a class="content-page-take-me-to-community-button" href="https://community.spiceworks.com/"><button class="take-me-btn" id="topic footer|Take me to the Community">Take me to Community</button></a>
                                                </div>
                                            </div><!--<div class="login-1">
                                                <h3></h3>       
                                                <p></p>

                                                <form name="loginform1" class="gp-login-form1" action="" method="post">
                                
                                                        <div class="gp-login-content1">
                                                                <div class="gp-social-login1">
                                                                        <div class="gp-social-login2">
                                                                                                                                                <a rel="nofollow" class="mo_btn mo_btn-mo mo_btn-block mo_btn-social mo_btn-custom-dec login-button email-sign-in" id="refresh" href="#EmailSignUp">
                                                                                
                                                                        <svg class="email-svg" width="22" height="17" viewBox="0 0 22 17" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                                                <path d="M20.5533 1C20.4625 0.99064 20.3709 0.99064 20.28 1H1.61334C1.49371 1.00185 1.37486 1.01979 1.26001 1.05334L10.8933 10.6467L20.5533 1Z" fill="#0077B5"/>
                                                                                <path d="M21.54 1.92667L11.8333 11.5933C11.5835 11.8417 11.2455 11.9811 10.8933 11.9811C10.541 11.9811 10.2031 11.8417 9.95329 11.5933L0.333288 2C0.303714 2.10869 0.288034 2.2207 0.286621 2.33333V15.6667C0.286621 16.0203 0.427097 16.3594 0.677145 16.6095C0.927194 16.8595 1.26633 17 1.61995 17H20.2866C20.6402 17 20.9794 16.8595 21.2294 16.6095C21.4795 16.3594 21.62 16.0203 21.62 15.6667V2.33333C21.6146 2.19444 21.5877 2.05722 21.54 1.92667ZM2.53329 15.6667H1.60662V14.7133L6.45329 9.90667L7.39329 10.8467L2.53329 15.6667ZM20.2733 15.6667H19.34L14.48 10.8467L15.42 9.90667L20.2666 14.7133L20.2733 15.6667Z" fill="#0077B5"/>
                                                                        </svg>

                                                                        <div class="space-p1" onclick="openSignUp(), ga('send', 'event', 'sign up', 'click', 'topic footer|signup|email', 'topic-footer-signup-email');">Sign up with Email</div>
                                                                        </a>            
                                                                
                                                                   </div>
                                                                </div>
                                                        </div>
                                        
                                                        <style type="text/css">
                                                                 .hideSignIn{
                                                                        display: none!important;
                                                                 }
                                                        </style>
                                                </form>
                                        </div>
                                                                                
                                </div>-->
                                            <div class="col-md-12 table-of-content nopadding" style="position:fixed!important; width: 834px!important;"></div>
                                        </div>
                                    </article>
                                </div>
                                <div class="col-md-12 col-sm-12 for-tablets">
                                    <div style="margin-top: 20px" class="centerthe1">
                                        <div data-pogo="footer"></div>
                                    </div>
                                </div>
                                <div class="col-md-4 col-sm-4 article-sidebar">
                                    <aside role="complementary">
                                        <div class="adcode-sidebar-one article-mobile-ads">
                                            <div data-pogo="sidebar"></div>
                                        </div>
                                        <div class="survey-option">
                                            <div class="survey-img">
                                                <a href="https://www.spiceworks.com/spiceworld/" target="_blank"><img src="https://images.spiceworks.com/wp-content/uploads/2024/10/01200816/SW24_NIPage_800x500_V2.jpg" data-src="https://images.spiceworks.com/wp-content/uploads/2024/10/01200816/SW24_NIPage_800x500_V2.jpg" class="" alt="Survey Image" data-size="Promo" style="" width="100%" /></a>
                                            </div>
                                            <div class="survey-text">
                                                <p>
                                                    <strong>Join us at SpiceWorld</strong><br />
                                                    Level up your IT game at our premier conference where IT pros and industry experts come together.
                                                </p><a class="take-survey-btn" id="survey-btn" href="https://www.spiceworks.com/spiceworld/" target="_blank"><button>Save your spot now</button></a>
                                            </div>
                                        </div>
                                        <div class="popular-section">
                                            <div class="popular-section-h5">
                                                Spiceworks Community
                                            </div>
                                            <div class="left-content-home">
                                                <div class="content-description">
                                                    <div class="MixedUseItem-content">
                                                        <div class="MixedUseItem-headline popular-list" style="padding-bottom:8px;margin-bottom:8px;">
                                                            <p>
                                                                <a class="feedlink0" href="https://community.spiceworks.com/t/at-52-and-8-years-into-my-career-is-it-worth-it-to-finish-my-degree/1158595" title="At 52 and 8 years into my career is it worth it to finish my degree?" target="_blank">At 52 and 8 years into my career is it worth it to finish my degree?</a>
                                                            </p>
                                                            <div class="feedc">
                                                                I’m asking this as someone who has gotten the CCNA&gt;&gt;CCNP R&amp;S, AWS-SAA, Linux certified. I’m am working on my cloud certs an...
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                            <div class="left-content-home">
                                                <div class="content-description">
                                                    <div class="MixedUseItem-content">
                                                        <div class="MixedUseItem-headline popular-list" style="padding-bottom:8px;margin-bottom:8px;">
                                                            <p>
                                                                <a class="feedlink1" href="https://community.spiceworks.com/t/spark-pro-series-7-january-2025/1160178" title="Spark! Pro Series - 7 January 2025" target="_blank">Spark! Pro Series - 7 January 2025</a>
                                                            </p>
                                                            <div class="feedc">
                                                                Today in History: 7 January, 2025 1610 – Galileo Galilei discovers the first three moons of Jupiter; Io, Europa, and Ganymede 1611 - Tr...
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                            <div class="left-content-home">
                                                <div class="content-description">
                                                    <div class="MixedUseItem-content">
                                                        <div class="MixedUseItem-headline popular-list" style="padding-bottom:8px;margin-bottom:8px;">
                                                            <p>
                                                                <a class="feedlink2" href="https://community.spiceworks.com/t/snap-lower-orbit-worst-in-show-brain-reading-wearable/1161318" title="Snap! -- Lower Orbit, Worst in Show, Brain-Reading Wearable" target="_blank">Snap! -- Lower Orbit, Worst in Show, Brain-Reading Wearable</a>
                                                            </p>
                                                            <div class="feedc">
                                                                Welcome to today’s edition of the Spiceworks Snap! It’s your daily dose of security and tech news, in brief, along with a mix of othe...
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div><br />
                                            <a class="coc" href="https://community.spiceworks.com" target="_blank">Check out the Community</a><br />
                                            <br />
                                        </div>
                                        <div class="popular-section">
                                            <div class="popular-section-h5">
                                                Popular Articles
                                            </div>
                                        </div>
                                        <div class="adcode-sidebar-two">
                                            <script type="text/javascript">
                                            //<![CDATA[
                                            $stick = $('.adcode-sidebar-two');
                                            jQuery(function($) {
                                            function fixDiv() {
                                            var $cache = $('#sidebar-bottom-ad');
                                            if ($(window).scrollTop() > $stick.offset().top)
                                            $cache.css({
                                            'position': 'fixed',
                                            'top': '30px',
                                            'padding': '0px 20px 0px 0px',
                                            'margin': '0px 0px 0px 0px'
                                            });
                                            else
                                            $cache.css({
                                            'position': 'static',
                                            'padding': '30px 0px 0px 0px',
                                            'margin': '0px 0px 0px 0px'
                                            });
                                            }
                                            $(window).scroll(fixDiv);
                                            fixDiv();
                                            });
                                            //]]>
                                            </script>
                                            <div data-pogo="sidebar" id="sidebar-bottom-ad"></div>
                                        </div>
                                    </aside>
                                </div>
                            </div>
                            <div class="col-md-12 col-sm-12">
                                <div style="margin-top: 20px" class="centerthe1">
                                    <div data-pogo="footer"></div>
                                </div>
                            </div>
                        </div>
                    </div><!-- start Recommended Reads section -->
                    <div class="new_recommended_reads">
                        <div class="r-reads-footer gp-container gp-container-1">
                            <div id="gp-content-footer">
                                <h2>
                                    Recommended Reads
                                </h2>
                                <div class="r-read-main">
                                    <div class="r-read-list">
                                        <div class="r-read-list-inner">
                                            <div class="r-reads-thum">
                                                <a class="content-page-recommended-article-0" href="https://www.spiceworks.com/marketing/marketing-strategy/guest-article/decentralized-infrastructure-for-media-companies/"><img src="https://images.spiceworks.com/400x200/wp-content/uploads/2024/06/25095544/Shutterstock_2114108573.jpg" data-src="https://images.spiceworks.com/400x200/wp-content/uploads/2024/06/25095544/Shutterstock_2114108573.jpg" class="lazyloaded" title="Stasis Is Not An Option: Now’s The Time To Adapt And Find The New Models We Need To Thrive" alt="Stasis Is Not An Option: Now’s The Time To Adapt And Find The New Models We Need To Thrive" data-size="" /></a>
                                            </div>
                                            <div class="show-category">
                                                <a class="content-page-recommended-article-topic-0" href="https://www.spiceworks.com/marketing/marketing-strategy/" rel="dofollow" data-cms-ai="0">Marketing Strategy</a>
                                            </div>
                                            <div class="r-reads-title">
                                                <h3>
                                                    <a class="content-page-recommended-article-0" href="https://www.spiceworks.com/marketing/marketing-strategy/guest-article/decentralized-infrastructure-for-media-companies/" rel="bookmark" title="Stasis Is Not An Option: Now’s The Time To Adapt And Find The New Models We Need To Thrive">Stasis Is Not An Option: Now’s The Time To Adapt And Find The New Models We Need To Thrive</a>
                                                </h3>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="r-read-list">
                                        <div class="r-read-list-inner">
                                            <div class="r-reads-thum">
                                                <a class="content-page-recommended-article-1" href="https://www.spiceworks.com/tech/artificial-intelligence/guest-article/navigating-ai-in-healthcare-medtech/"><img src="https://images.spiceworks.com/400x200/wp-content/uploads/2024/06/17114539/Shutterstock_2409918593.jpg" data-src="https://images.spiceworks.com/400x200/wp-content/uploads/2024/06/17114539/Shutterstock_2409918593.jpg" class="lazyloaded" title="Revolutionizing Healthcare with AI: Key Strategies for Medtech" alt="Revolutionizing Healthcare with AI: Key Strategies for Medtech" data-size="" /></a>
                                            </div>
                                            <div class="show-category">
                                                <a class="content-page-recommended-article-topic-1" href="https://www.spiceworks.com/tech/artificial-intelligence/" rel="dofollow" data-cms-ai="0">Artificial Intelligence</a>
                                            </div>
                                            <div class="r-reads-title">
                                                <h3>
                                                    <a class="content-page-recommended-article-1" href="https://www.spiceworks.com/tech/artificial-intelligence/guest-article/navigating-ai-in-healthcare-medtech/" rel="bookmark" title="Revolutionizing Healthcare with AI: Key Strategies for Medtech">Revolutionizing Healthcare with AI: Key Strategies for Medtech</a>
                                                </h3>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="r-read-list">
                                        <div class="r-read-list-inner">
                                            <div class="r-reads-thum">
                                                <a class="content-page-recommended-article-2" href="https://www.spiceworks.com/marketing/ai-in-marketing/guest-article/ai-powered-marketing-google-io-2024/"><img src="https://images.spiceworks.com/400x200/wp-content/uploads/2024/06/13124936/Shutterstock_1196571820.jpg" data-src="https://images.spiceworks.com/400x200/wp-content/uploads/2024/06/13124936/Shutterstock_1196571820.jpg" class="lazyloaded" title="AI Ascendant: Key Takeaways from Google I/O 2024 for Modern Marketers" alt="AI Ascendant: Key Takeaways from Google I/O 2024 for Modern Marketers" data-size="" /></a>
                                            </div>
                                            <div class="show-category">
                                                <a class="content-page-recommended-article-topic-2" href="https://www.spiceworks.com/marketing/ai-in-marketing/" rel="dofollow" data-cms-ai="0">AI in Marketing</a>
                                            </div>
                                            <div class="r-reads-title">
                                                <h3>
                                                    <a class="content-page-recommended-article-2" href="https://www.spiceworks.com/marketing/ai-in-marketing/guest-article/ai-powered-marketing-google-io-2024/" rel="bookmark" title="AI Ascendant: Key Takeaways from Google I/O 2024 for Modern Marketers">AI Ascendant: Key Takeaways from Google I/O 2024 for Modern Marketers</a>
                                                </h3>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="r-read-list">
                                        <div class="r-read-list-inner">
                                            <div class="r-reads-thum">
                                                <a class="content-page-recommended-article-3" href="https://www.spiceworks.com/marketing/customer-data/guest-article/enhancing-cross-domain-identity-with-first-party-data/"><img src="https://images.spiceworks.com/400x200/wp-content/uploads/2024/05/29084852/Cookiless.jpg" data-src="https://images.spiceworks.com/400x200/wp-content/uploads/2024/05/29084852/Cookiless.jpg" class="lazyloaded" title="How to Move Beyond Third-Party Tracking in 2024" alt="How to Move Beyond Third-Party Tracking in 2024" data-size="" /></a>
                                            </div>
                                            <div class="show-category">
                                                <a class="content-page-recommended-article-topic-3" href="https://www.spiceworks.com/marketing/customer-data/" rel="dofollow" data-cms-ai="0">Customer Data Management</a>
                                            </div>
                                            <div class="r-reads-title">
                                                <h3>
                                                    <a class="content-page-recommended-article-3" href="https://www.spiceworks.com/marketing/customer-data/guest-article/enhancing-cross-domain-identity-with-first-party-data/" rel="bookmark" title="How to Move Beyond Third-Party Tracking in 2024">How to Move Beyond Third-Party Tracking in 2024</a>
                                                </h3>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="r-read-list">
                                        <div class="r-read-list-inner">
                                            <div class="r-reads-thum">
                                                <a class="content-page-recommended-article-4" href="https://www.spiceworks.com/marketing/customer-data/guest-article/precision-marketing-with-real-time-data/"><img src="https://images.spiceworks.com/400x200/wp-content/uploads/2024/05/16112136/Healthcare-With-Real-time-Clinical-Data.jpg" data-src="https://images.spiceworks.com/400x200/wp-content/uploads/2024/05/16112136/Healthcare-With-Real-time-Clinical-Data.jpg" class="lazyloaded" title="Precision Marketing in Healthcare With Real-time Clinical Data" alt="Precision Marketing in Healthcare With Real-time Clinical Data" data-size="" /></a>
                                            </div>
                                            <div class="show-category">
                                                <a class="content-page-recommended-article-topic-4" href="https://www.spiceworks.com/marketing/customer-data/" rel="dofollow" data-cms-ai="0">Customer Data Management</a>
                                            </div>
                                            <div class="r-reads-title">
                                                <h3>
                                                    <a class="content-page-recommended-article-4" href="https://www.spiceworks.com/marketing/customer-data/guest-article/precision-marketing-with-real-time-data/" rel="bookmark" title="Precision Marketing in Healthcare With Real-time Clinical Data">Precision Marketing in Healthcare With Real-time Clinical Data</a>
                                                </h3>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="r-read-list">
                                        <div class="r-read-list-inner">
                                            <div class="r-reads-thum">
                                                <a class="content-page-recommended-article-5" href="https://www.spiceworks.com/marketing/marketing-strategy/news/meta-to-sunset-workplace-by-june-2026/"><img src="https://images.spiceworks.com/400x200/wp-content/uploads/2023/10/12121131/Meta-Campus.jpg" data-src="https://images.spiceworks.com/400x200/wp-content/uploads/2023/10/12121131/Meta-Campus.jpg" class="lazyloaded" title="Meta to Sunset Workplace by June 2026" alt="Meta to Sunset Workplace by June 2026" data-size="" /></a>
                                            </div>
                                            <div class="show-category">
                                                <a class="content-page-recommended-article-topic-5" href="https://www.spiceworks.com/marketing/marketing-strategy/" rel="dofollow" data-cms-ai="0">Marketing Strategy</a>
                                            </div>
                                            <div class="r-reads-title">
                                                <h3>
                                                    <a class="content-page-recommended-article-5" href="https://www.spiceworks.com/marketing/marketing-strategy/news/meta-to-sunset-workplace-by-june-2026/" rel="bookmark" title="Meta to Sunset Workplace by June 2026">Meta to Sunset Workplace by June 2026</a>
                                                </h3>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div><!-- end Recommended Reads section -->
                </div>
            </div>
        </main>
        <script>
        <![CDATA[
                jQuery(document).ready(function(){
                var submitIcon = jQuery('.searchbox-icon');
                var inputBox = jQuery('.searchbox-input');
                var searchBox = jQuery('.searchbox');
                var isOpen = false;
                submitIcon.click(function(){
                        if(isOpen == false){
                                searchBox.addClass('searchbox-open');
                                inputBox.focus();
                                isOpen = true;
                        } else {
                                searchBox.removeClass('searchbox-open');
                                inputBox.focusout();
                                isOpen = false;
                        }
                });
                        submitIcon.mouseup(function(){
                                return false;
                        });
                searchBox.mouseup(function(){
                                return false;
                        });
                        jQuery(document).mouseup(function(){
                                if(isOpen == true){
                                        jQuery('.searchbox-icon').css('display','block');
                                        submitIcon.click();
                                }
                        });
                });
                function buttonUp(){
                        var inputVal = jQuery('.searchbox-input').val();
                        inputVal = $.trim(inputVal).length;
                        if( inputVal !== 0){
                                jQuery('.searchbox-icon').css('display','none');
                        } else {
                                jQuery('.searchbox-input').val('');
                                jQuery('.searchbox-icon').css('display','block');
                        }
                }
                jQuery(document).ready(function() {
                        jQuery('.searchBox-clear-q button, .search-results-form .searchBox-clear').keypress(function(event) {
                                if (event.keyCode === 13) {
                                        jQuery(this).click();
                                }
                        });
                        jQuery('.lean-navbar-drawer .search-wrapper label.search-icon input, .search-results-form .search-icon input').on('focus', function(){
                                jQuery('.fa-search').addClass('focus');
                        });
                        jQuery('.lean-navbar-drawer .search-wrapper label.search-icon input, .search-results-form .search-icon input').on('focusout', function(){
                                jQuery('.fa-search').removeClass('focus');
                        });
                        jQuery(".search-box-results .search-box-results-entry:last-child").focusout(function(){
                                jQuery('.search-box-results').hide();
                        });
                });
        ]]>
        </script>
        <footer id="footer-main" data-footer="site-footer" class="site-footer" role="contentinfo">
            <div class="site-footer--auxiliary">
                <div id="block-4" class="widget widget_block">
                    <a data-text="spiceworks-logo" class="site-footer_link site-footer_brand" href="https://www.spiceworks.com/"><span class="external-link-icon">spiceworks.</span></a>
                </div>
                <ul class="site-footer_menu site-footer_menu--auxiliary-links">
                    <li id="menu-item-3176771" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176771 site-footer_menu-item">
                        <a href="https://www.spiceworks.com/about/" class="site-footer_link">About</a>
                    </li>
                    <li id="menu-item-3176772" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176772 site-footer_menu-item">
                        <a href="https://www.spiceworks.com/contact/" class="site-footer_link">Contact</a>
                    </li>
                    <li id="menu-item-3176773" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176773 site-footer_menu-item">
                        <a target="_blank" rel="noopener" href="https://community.spiceworks.com/c/spiceworks-support/34/" class="site-footer_link">Support</a>
                    </li>
                    <li id="menu-item-3176774" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176774 site-footer_menu-item">
                        <a target="_blank" rel="noopener" href="https://swzd.com/" class="site-footer_link">Advertise</a>
                    </li>
                    <li id="menu-item-3176776" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176776 site-footer_menu-item">
                        <a href="https://www.spiceworks.com/press/" class="site-footer_link">Press / Media</a>
                    </li>
                    <li id="menu-item-3176777" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176777 site-footer_menu-item">
                        <a target="_blank" rel="noopener" href="https://swzd.com/careers/" class="site-footer_link">Careers</a>
                    </li>
                    <li id="menu-item-3176778" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176778 site-footer_menu-item">
                        <a href="https://www.spiceworks.com/spiceworld/" class="site-footer_link">SpiceWorld</a>
                    </li>
                    <li id="menu-item-3176780" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176780 site-footer_menu-item">
                        <a href="https://www.spiceworks.com/about-editorial/" class="site-footer_link">About Editorial</a>
                    </li>
                    <li class="site-footer_menu-item site-footer_menu-item--social-links">
                        <!--<ul class="site-footer_menu site-footer_menu==social-links">-->
                        <div id="block-5" class="widget widget_block">
                            <ul class="site-footer_menu site-footer_menu--social-links">
                                <li class="site-footer_menu-item site-footer_menu-item--social-facebook">
                                    <a data-text="social-facebook" class="site-footer_link" href="https://www.facebook.com/Spiceworks/" rel="dofollow" title="Follow on facebook"><span class="external-link-icon">Follow on Facebook</span></a>
                                </li>
                                <li class="site-footer_menu-item site-footer_menu-item--social-twitter">
                                    <a data-text="social-twitter" class="site-footer_link" href="https://x.com/Spiceworks/" rel="dofollow" title="Follow on twitter"><svg viewbox="0 0 24 24" aria-hidden="true" class="r-4qtqp9 r-yyyyoo r-dnmrzs r-bnwqim r-1plcrui r-lrvibr r-18jsvk2 r-rxcuwo r-1777fci r-m327ed r-494qqr">
                                    <g>
                                        <path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path>
                                    </g></svg></a>
                                </li>
                                <li class="site-footer_menu-item site-footer_menu-item--social-linkedin">
                                    <a data-text="social-linkedin" class="site-footer_link" href="https://www.linkedin.com/company/spiceworks/" rel="dofollow" title="Follow on linkedin"><span class="external-link-icon">Follow on Linkedin</span></a>
                                </li>
                                <li class="edfm-icon-youtube rss site-footer_menu-item site-footer_menu-item--social">
                                    <a class="site-footer_link" rel="dofollow" href="https://www.youtube.com/@spiceworks/" data-text="social-youtube" title="Follow on youtube"></a>
                                </li>
                                <li class="edfm-icon-linkedin rss site-footer_menu-item site-footer_menu-item--social">
                                    <a class="site-footer_link" href="https://www.spiceworks.com/rss-feeds/" data-text="social-rss" rel="dofollow" title="RSS feed"></a>
                                </li>
                            </ul>
                        </div><!--</ul>-->
                    </li>
                </ul>
                <ul class="site-footer_menu site-footer_menu--legal">
                    <li id="menu-item-3176781" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176781 site-footer_menu-item">
                        <a href="https://www.spiceworks.com/sitemap/" class="site-footer_link">Sitemap</a>
                    </li>
                    <li id="menu-item-3176782" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176782 site-footer_menu-item">
                        <a rel="privacy-policy" href="https://www.spiceworks.com/privacy/" class="site-footer_link">Privacy Policy</a>
                    </li>
                    <li id="menu-item-3176783" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176783 site-footer_menu-item">
                        <a target="_blank" rel="noopener" href="https://www.ziffdavis.com/terms-of-use" class="site-footer_link">Terms of Use</a>
                    </li>
                    <li id="menu-item-3176784" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176784 site-footer_menu-item">
                        <a href="https://www.spiceworks.com/privacy/cookies/" class="site-footer_link">Cookie Policy</a>
                    </li>
                    <li id="menu-item-3176785" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176785 site-footer_menu-item">
                        <a target="_blank" rel="noopener" href="https://community.spiceworks.com/faq" class="site-footer_link">Guidelines</a>
                    </li>
                    <li id="menu-item-3176786" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176786 site-footer_menu-item">
                        <a href="https://www.spiceworks.com/accessibility-statement/" class="site-footer_link">Accessibility Statement</a>
                    </li>
                    <li id="menu-item-3176787" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3176787 site-footer_menu-item">
                        <a target="_blank" rel="noopener" href="https://dsar.spiceworks.com/" class="site-footer_link">Do Not Sell my Personal Information</a>
                    </li>
                    <li class="site-footer_menu-item site-footer_copyright">
                        <div id="block-3" class="widget widget_block widget_text">
                            <p>
                                © Copyright 2006 - 2024 Spiceworks Inc.
                            </p>
                        </div>
                    </li>
                </ul>
            </div>
        </footer><!-- Schema & Structured Data For WP v1.36 - -->
        <script type="application/ld+json" class="saswp-schema-markup-output">
        <![CDATA[
        [{
        "@context": "https://schema.org/",
        "@type": "BreadcrumbList",
        "@id": "https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/#breadcrumb",
        "itemListElement": [
        {
            "@type": "ListItem",
            "position": 1,
            "item": {
                "@id": "https://www.spiceworks.com",
                "name": "Spiceworks Inc"
            }
        },
        {
            "@type": "ListItem",
            "position": 2,
            "item": {
                "@id": "https://www.spiceworks.com/(tech|marketing|security|supplychain|hr|finance|collaboration)/news/",
                "name": "News"
            }
        },
        {
            "@type": "ListItem",
            "position": 3,
            "item": {
                "@id": "https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/",
                "name": "Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform"
            }
        }
        ]
        },

        {
        "@context": "https://schema.org/",
        "@type": "NewsArticle",
        "@id": "https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/#newsarticle",
        "url": "https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/",
        "headline": "Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform",
        "mainEntityOfPage": "https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/",
        "datePublished": "2020-07-10T14:15:42+00:00",
        "dateModified": "2025-01-07T09:08:22+00:00",
        "description": "Vidyard launches new tools and features on its platform to help professionals collaborate and share videos on the go.",
        "articleSection": "",
        "articleBody": "Vidyard Launches New Tools and Features for BusinessesVidyard announced significant updates to its video hosting platform and tools yesterday. The company that provides video platforms for businesses said that the new product lineup was introduced in response to brands&rsquo; rapidly increasing reliance on videos to reach and engage remote audiences. In light of COVID-19 and resulting changes in the way we work, live, and buy &ndash; videos are no longer just a marketing tool, they are critical for employee engagement, prospecting, and sales.Key changes to Vidyard&rsquo;s platform include new integration with Zoom, redesign of its video hosting platform, and enterprise video platform services. It is interesting to see that the company is offering business-grade video hosting, creation, sharing, and measurement capabilities for free to all users.Learn More: Video Marketing 101: 4 Basics Marketers Can't Miss&ldquo;Businesses are quickly evolving their sales, marketing, and communications strategies to align with a digital-first communication world,&rdquo; says Michael Litt, co-founder and CEO of Vidyard. &ldquo;Video is a huge part of that as it&rsquo;s simply more efficient, more expressive, and more effective than standard text. Today&rsquo;s businesses need a simpler, smarter, and more scalable way to put the power of video into their people&rsquo;s hands. We&rsquo;re excited to deliver on that need with a new breed of video creation and hosting solutions that turn any business professional into a video creator and any organization into a video-first business.&rdquo;The company witnessed a 400&percnt; increase in new monthly sign-ups of its online screen recording and video creation tool since March 1, 2020. With this release, Vidyard has launched some innovative new features on its platform such as online video recording and sharing that allow users to create and collaborate on video creation. It has also introduced new mobile apps to enable marketers to create and share customer videos from anywhere or on the go. New launches include:Vidyard android app and Updated iOS app: These apps have been designed to help marketers and professionals record and share videos from anywhere. The apps allow users to quickly record videos while on the go and immediately share them through a company-branded video page. The mobile apps and the online video recording tool connect to the same video libraries, making it seamless for users to transition between desktop and mobile with continuous access to all video recordings. Comments and reply features: Viewers can now leave a comment or reply to videos shared by professionals using Pro, Teams, Business, and Enterprise tier offerings. Video posters/sharers receive comment notifications to enable quicker replies &ndash; thereby turning any video into a collaboration tool.Improved security features: Vidyard now offers users of Pro, Teams, and Business plans to secure viewer access to private videos through custom passwords. Customers can also use single sign-on (SSO) to ensure private videos created and shared by internal users can be viewed by other employees within the organization.Revamped UX: Vidyard makes it easier for users to generate transcripts, add closed captions, customize video thumbnail, set viewing permissions, and publish content across public and private channels. The company says it has made it easier for beginner video creators to create professional-grade videos easily.Learn More: Seven Tips for Repurposing Video ContentVideo is the Ultimate Engagement Tool for Marketers in 2020 With people confined to their homes for the last three to four months, our social lives have moved online, and video consumption has risen notably within the at-home segments of television, gaming, education, OTT, and business content. Consumer behavior is rapidly evolving as the world adjusts to the new normal. The emergence of trends, such as social distancing, work-from-home, and virtual meetings have increased the demand for at-home digital media. Video platforms like Vidyard are looking to accelerate consumer habit-formation through the ease of access and intuitive interfaces. What does this mean for marketers? It is no secret that videos are the most engaging tool available to marketers today. However, barriers such as video production, screen recording, and easy sharing had traditionally prevented marketers from unlocking the real potential of digital videos. With the introduction of smart video platforms, marketers can leverage the format to not only engage customers and drive sales, but also share access with other business functions within the organization, like HR and finance, who can also use it as an employee-facing tool.",
        "keywords": "",
        "name": "Rewriting Rules of Engagement with Video in 2020: Vidyard Introduces New Features on its Video Platform",
        "thumbnailUrl": "https://images.spiceworks.com/ad/93/9f099ec74374a67121155d25f38a/viyard.jpg",
        "wordCount": "712",
        "timeRequired": "PT3M9S",
        "mainEntity": {
        "@type": "WebPage",
        "@id": "https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/"
        },
        "author": {
        "@type": "Person",
        "name": "",
        "url": "https://www.spiceworks.com/user/about/",
        "sameAs": [],
        "image": {
            "@type": "ImageObject",
            "url": "https://images.spiceworks.com/wp-content/uploads/2021/07/15111206/Default-Pic-150x150.png",
            "height": 96,
            "width": 96
        }
        },
        "editor": {
        "@type": "Person",
        "name": "",
        "url": "https://www.spiceworks.com/user/about/",
        "sameAs": [],
        "image": {
            "@type": "ImageObject",
            "url": "https://images.spiceworks.com/wp-content/uploads/2021/07/15111206/Default-Pic-150x150.png",
            "height": 96,
            "width": 96
        }
        },
        "publisher": {
        "@type": "Organization",
        "name": "Spiceworks",
        "url": "https://www.spiceworks.com",
        "logo": {
            "@type": "ImageObject",
            "url": "https://images.spiceworks.com/wp-content/uploads/2022/11/10090900/spiceworkslogo.png",
            "width": "220",
            "height": "69"
        }
        },
        "speakable": {
        "@type": "SpeakableSpecification",
        "xpath": [
            "/html/head/title",
            "/html/head/meta[@name='description']/@content"
        ]
        },
        "image": [
        {
            "@type": "ImageObject",
            "@id": "https://www.spiceworks.com/marketing/marketing-strategy/news/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform/#primaryimage",
            "url": "https://images.spiceworks.com/ad/93/9f099ec74374a67121155d25f38a/viyard.jpg",
            "width": "1200",
            "height": "1200",
            "caption": "Viyard"
        },
        {
            "@type": "ImageObject",
            "url": "https://images.spiceworks.com/ad/93/9f099ec74374a67121155d25f38a/viyard.jpg",
            "width": "1200",
            "height": "900",
            "caption": "Viyard"
        },
        {
            "@type": "ImageObject",
            "url": "https://images.spiceworks.com/ad/93/9f099ec74374a67121155d25f38a/viyard.jpg",
            "width": "1200",
            "height": "675",
            "caption": "Viyard"
        }
        ]
        }]
        ]]>
        </script>
        <link rel="stylesheet" id="mo-wp-style-icon-css" href="https://www.spiceworks.com/wp-content/plugins/miniorange-login-openid/includes/css/mo_openid_login_icons.css?version=7.6.9&amp;ver=v3.2.4" type="text/css" media="all" />
        <link rel="stylesheet" id="mo-openid-sl-wp-font-awesome-css" href="https://www.spiceworks.com/wp-content/plugins/miniorange-login-openid/includes/css/mo-font-awesome.min.css?ver=v3.2.4" type="text/css" media="all" />
        <link rel="stylesheet" id="mo_openid_admin_settings_style-css" href="https://www.spiceworks.com/wp-content/plugins/miniorange-login-openid/includes/css/mo_openid_style.css?version=7.6.9&amp;ver=v3.2.4" type="text/css" media="all" />
        <script type="text/javascript" src="https://www.google.com/recaptcha/api.js?render=6LcGSvYiAAAAAEIee_n3eNYguqzTe_TJfCH4YuLj&amp;ver=2.2" id="recaptcha-js-js"></script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/plugins/wp-custom-blogs/js/bootstrap.min.js?ver=1.2" id="script-js"></script> 
        <script type="text/javascript" id="autosearch_js_script-js-extra">

        /* <![CDATA[ */
        var params = {"ajax_url":"https:\/\/www.spiceworks.com\/wp-admin\/admin-ajax.php","nonce":"3c448e841f"};
        /* ]]> */
        </script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge-child/js/auto-search.js?ver=2.2" id="autosearch_js_script-js"></script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge/lib/scripts/modernizr.js?ver=6.6.2" id="modernizr-js"></script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge/lib/scripts/selectivizr.min.js?ver=6.6.2" id="selectivizr-js"></script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge/lib/scripts/placeholders.min.js?ver=6.6.2" id="placeholder-js"></script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge/lib/scripts/jquery.ui.totop.min.js?ver=6.6.2" id="jquery-totop-js"></script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge/lib/scripts/jquery.stellar.min.js?ver=6.6.2" id="jquery-stellar-js"></script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge/lib/scripts/jquery.video-header.js?ver=6.6.2" id="ghostpool-video-header-js"></script> 
        <script type="text/javascript" id="ghostpool-custom-js-js-extra">

        /* <![CDATA[ */
        var ghostpool_script = {"url":"https:\/\/www.spiceworks.com\/marketing\/marketing-strategy\/news\/rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform\/","headerHeight":"125px","smallHeaderHeight":"83.3333333333","logoHeight":"69px","logoMarginTop":"0","logoMarginBottom":"0","headerSizeReduction":"1.5","lightbox":"group_images","hide_move_primary_menu_links":"enabled"};
        /* ]]> */
        </script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge/lib/scripts/custom.js?ver=6.6.2" id="ghostpool-custom-js-js"></script> 
        <script type="text/javascript" id="ghostpool-ajax-loop-js-extra">

        /* <![CDATA[ */
        var ghostpoolAjax = {"ajaxurl":"https:\/\/www.spiceworks.com\/wp-admin\/admin-ajax.php","ajaxnonce":"b6e544a14d","querystring":"topic=marketing-strategy&news=rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform&post_type=news&name=rewriting-rules-of-engagement-with-video-in-2020-vidyard-introduces-new-features-on-its-video-platform"};
        /* ]]> */
        </script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge/lib/scripts/ajax-loop.js?ver=6.6.2" id="ghostpool-ajax-loop-js"></script> 
        <script type="text/javascript" src="https://www.spiceworks.com/wp-content/themes/gauge-child/js/img-zoom.js?ver=1.1.2" id="img-zoom-js"></script> <!-- moved footer evidon popup and JS code to GTM -->
        <script>
        <![CDATA[

        //comment hide
         var stringcheck = $(".gp-entry-meta .gp-meta-comments a").text();
         var stringcheckSpan = $(".gp-entry-meta .gp-meta-comments span").text();
         if(stringcheck == "No Comments" || stringcheck == "Comments Closed"){
                $(".gp-meta-comments").hide();
         }
         if(stringcheckSpan == "No Comments" || stringcheckSpan == "Comments Closed"){
                $(".gp-meta-comments").hide();
         }
        $(document).ready(function () {
                var relUrl = "h";
            $('.check-email-verification .close').click(function(e) {
                window.location.href = relUrl;
            });
        });
          //sr-1033-added the script for copy paste the table of content right side 
        var elmnt = document.getElementsByClassName("right-section-1")[0];
        var cln = elmnt.cloneNode(true);
        $('.adcode-sidebar-two').append(cln);
        $('.adcode-sidebar-two .right-section-1 ul:nth-child(2)').addClass("right-section-2");
        $(".btn-overflow1").click(function(){
        $(".new_recommended_reads .right-section-1 ul:nth-child(2)").toggleClass("right-section-2");
        });


        $('.right-section-1 h3, .right-section-1 h2').addClass('up-arrow');
        if ($(window).width() < 3000 && $(window).width() > 768 ) {
        $stick = $('.adcode-sidebar-two ');
                jQuery(function($) {
                  function fixDiv() {
                    var $cache = $('.adcode-sidebar-two .right-section-1');
                    if ($(window).scrollTop() > $stick.offset().top)
                      $cache.css({
                        'position': 'fixed',
                        'top': '285px',
                        'padding': '0px 0px 0px 16px',
                        'width': '24%',
                        'z-index':'0'
                      });
                    else
                      $cache.css({
                        'position': 'static',
                        'padding': '0px 0px 0px 16px',
                        'width': '95%'
                      });
                  }
                  $(window).scroll(fixDiv);
                  fixDiv();
                });

        }

        if ($(window).width() < 767) {
        var elmnt = document.getElementsByClassName("right-section-1")[0];
        var cln = elmnt.cloneNode(true);
        $('.new_recommended_reads').append(cln);
        }

        $(".right-section-1 h3, .right-section-1 h2, .right-section-1 h4").click(function() {
        $('.right-section-1 ul').toggleClass("toggleClas");
        $('.right-section-1 h3, .right-section-1 h2').toggleClass("up-arrow");
        $('.right-section-1 h3, .right-section-1 h2').removeClass("up-arrow");
        $('.right-section-1 h3, .right-section-1 h2').toggleClass('up-arrow down-arrow');
        });
        //End sr-added the script for copy paste the table of content right side 
        //sr-add-for-scroll-issue
        $("a[href='#']").attr('href', 'javascript:void(0)');
        //End sr-add-for-scroll-issue
        ]]>
        </script> <!-- Aberdeen Pixel's -->
        <script async="async" id="tbw_pixel" type="text/javascript" src="//d26x5ounzdjojj.cloudfront.net/tbw/pixels/L3600c451a44ee7b6.js" tbw_site_id="L3600c451a44ee7b6" tbw_segment="marketing" tbw_log="1"></script> <!-- End Aberdeen Pixel's -->
        <script type="text/javascript">
        //<![CDATA[

        jQuery('.n-12,.new-13').prev().addClass('hide-last-one-c');
        //]]>
        </script> 
        <script>
        <![CDATA[

        jQuery(document).ready(function(title) {
        jQuery('a:not([title])').each(function(t){
        jQuery(this).attr('title',jQuery(this).text().trim());
        });
        });
        ]]>
        </script> 
        <script>
        <![CDATA[

        /*
        $( document ).ready(function() {
                setTimeout(function(){

                //var searchClass = $("input[placeholder='Search Spiceworks']").attr('class');
                //searchClass = searchClass.replace('search-input', 'search-input-spiceworks');


                //$("input[placeholder='Search Spiceworks']").attr('class', 'search-input-spiceworks')
                        

                //$("input[placeholder='Search Spiceworks']").attr('class', searchClass);
                $("input[placeholder='Search Spiceworks']").attr('name', 'query');
                //$("input[placeholder='Search Spiceworks']").attr('id', 'search_keyword');
                $('.search-wrapper form').attr('method','GET');
                $('.search-wrapper form').attr('action','/search');
                $('.search-wrapper form').keydown(function(event) {

            // enter has keyCode = 13, change it if you want to use another button
            if (event.keyCode == 13) {

                var keywoprd = $("input[placeholder='Search Spiceworks']").val();
                keywoprd = keywoprd.trim();
                if(keywoprd!=''){
                                if($(".searchClear").is(":focus")){
                                                $('#search-input-spiceworks').val('');
                                                $('.search-box-results').hide();
                                                return false;
                                }
                                $('.search-wrapper form').submit();
                                return false;
                }
            }
            
          });
                        
                }, 3000);
        });*/
        ]]>
        </script> 
        <script>
        <![CDATA[

                $( document ).ready(function() {
                   
                        $('a[title="News"]').click(function(){
                                if($("#ajax-load-more-2").find('.alm-listing').find('.homepage-listing').length==0)
                                {
                                        $("#ajax-load-more-2").find(".alm-load-more-btn").trigger( "click" );
                                }
                        }); 

                        $('a[title="Expert Insights"]').click(function(){
                                if($("#ajax-load-more-3").find('.alm-listing').find('.homepage-listing').length==0)
                                {
                                        $("#ajax-load-more-3").find(".alm-load-more-btn").trigger( "click" );
                                }       
                        }); 

                        $('a[title="Videos"]').click(function(){
                                if($("#ajax-load-more-4").find('.alm-listing').find('.homepage-listing').length==0)
                                {
                                        $("#ajax-load-more-4").find(".alm-load-more-btn").trigger( "click" );
                                }
                        });     

                });
        ]]>
        </script> <!--Zoho session--> 
        <script>
        <![CDATA[

                        $( document ).ready(function() {
                        
                                $("#zoho_session_starter").click(function(){
                                        $('#zoho_session_starter').attr('disabled','disabled');
                                        $("#zoho_session_starter").html("Starting Session...");
                                        $.ajax({
                                     type : "POST",
                                     dataType : "json",
                                     url : 'https://www.spiceworks.com/wp-admin/admin-ajax.php',
                                     data : {
                                        action: "start_zoho_session",
                                        nonce: '61a30d23b3',
                                     },
                                     success: function(response) {
                                                var result;
                                                result = JSON.parse(response);

                                                if(typeof result.representation!=='undefined' && typeof result.representation.session_id!=='undefined' && result.representation.session_id>1){

                                                        if(typeof result.representation.technician_url!=='undefined'){  
                                                                window.open(result.representation.technician_url);
                                                        }
                                                }else{
                                                        if(typeof result.error!=='undefined' &&typeof result.error.message!=='undefined'){
                                                                alert("Error: " + result.error.message);
                                                        }
                                                }

                                                $('#zoho_session_starter').removeAttr('disabled');
                                                $("#zoho_session_starter").html("Start remote session");

                                        }
                                        });  
                                                
                                }); 
                                
                                $(".SectionTabs-nav").click(function(){
                                        //var tabvalue = $('.SectionTabs li.active').attr('data-tab');
                                        var tabvalue = $(this).attr("data-tab");
                                        var url = location.hostname + location.pathname;
                                        var base = url.split("page")[0];
                                        var verticlename = location.pathname.split("/")[1];
                                        var exludeid = $('#excludeid').attr('data-exlude');
                                        var tabstring = (new URL(location.href)).searchParams.get('tab');
                                        //alert(jQuery("#"+tabvalue).eq(0).html());
                                        if($.trim(jQuery("#"+tabvalue).html())!=''){
                                                exit;
                                        }
                                        
                                        $.ajax({
                                    type : "POST",
                                    url : 'https://www.spiceworks.com/wp-admin/admin-ajax.php',
                                    data : {
                                        action: "custom_pagination_callback",
                                        nonce: '21800a8c7d',
                                                        tab: "false",
                                                        tabvalue: tabvalue,
                                                        base: base,
                                                        verticlename: verticlename,
                                                        exludeid: exludeid,
                                    },
                                    beforeSend  : function(){
                                                jQuery("#"+tabvalue).html("<p style='text-align:center;'>Loading please wait...!</p>");
                                                },
                                                success :function(response){
                                                        jQuery("#"+tabvalue).html(response);
                                                }
                                        });
                                });
                
                        });
        ]]>
        </script> <!---->
         <!-- LinkedIn Pixels Start -->
         
        <script type="text/javascript">
        //<![CDATA[
        _linkedin_partner_id = "6488140"; window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || []; window._linkedin_data_partner_ids.push(_linkedin_partner_id); 
        //]]>
        </script>
        <script type="text/javascript">
        //<![CDATA[
        (function(l) { if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])}; window.lintrk.q=[]} var s = document.getElementsByTagName("script")[0]; var b = document.createElement("script"); b.type = "text/javascript";b.async = true; b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; s.parentNode.insertBefore(b, s);})(window.lintrk); 
        //]]>
        </script> <noscript><img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=6488140&amp;fmt=gif" /></noscript> <!-- LinkedIn Pixels End -->
         
        <script type="text/javascript">
        //<![CDATA[

        $( document ).ready(function() {
                var fr_title = "";
                var de_title = "";
                var ip_code = Cookies.get("ip_code");
                if(ip_code == '' || ip_code == undefined || ip_code == null){
                        if(fr_title || de_title){
                                var response = getIPfromIPinfo();
                                console.log(response);
                            ip_code = response.country;
                                console.log(ip_code);
                                Cookies.set("ip_code", ip_code, { expires : 10 });
                        }       
                }               
                hide_show_title_desc(ip_code);
        function hide_show_title_desc(ip_code = null){
                if(ip_code == 'FR'){
                        var fr_title = "";
                        if (fr_title){
                                $("#title").remove();
                                $("#description").remove();
                                $("#title_de").remove();
                                $("#description_de").remove();
                                $("#title_fr").show();
                                $("#description_fr").show();
                                $("#excerpt").remove();
                        }
                        else {
                                $("#title").show();
                                $("#description").show();
                                $("#excerpt").show();
                        }
                }
                else if(ip_code == 'DE'){
                        var de_title = "";
                        if (de_title){
                                $("#title").remove();
                                $("#description").remove();                     
                                $("#title_fr").remove();
                                $("#description_fr").remove();
                                $("#title_de").show();
                                $("#description_de").show();
                                $("#excerpt").remove();
                        }
                        else {
                                $("#title").show();
                                $("#description").show();
                                $("#excerpt").show();
                        }
                }
                else {
                        $("#title").show();
                        $("#description").show(); 
                        $("#title_fr").remove();
                        $("#description_fr").remove();
                        $("#title_de").remove();
                        $("#description_de").remove();
                }
        }
        });

        function getIPfromIPinfo()
        {
        var result = null;
        var scriptUrl = "https://ipinfo.io/json?token=ec4300bb7cd432";
        $.ajax({
        url: scriptUrl,
        type: 'get',
        dataType: 'json',
        async: false,
        success: function(data) {
            result = data;
        } 
        });
        return result;
        }
        //]]>
        </script>
    </body>
</html>