<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>MoonPoint Support Weblog</title>
    <link>https://support.moonpoint.com/blog/blosxom/</link>
    <description>MoonPoint technical support weblog.</description>
    <language>en</language>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <generator>blosxom/2.1.2</generator>

  <item>
    <title>Concatenating videos with FFmpeg</title>
    <pubDate>Thu, 12 Mar 2026 19:48:00 -0400</pubDate>
    <link>https://support.moonpoint.com/blog/blosxom/2026/03/12#JoinVideos</link>
    <category>/video/ffmpeg</category>
    <guid isPermaLink="false">https://support.moonpoint.com/blog/blosxom/video/ffmpeg/JoinVideos</guid>
    <description>
The &lt;a href=&quot;https://en.wikipedia.org/wiki/FFmpeg&quot;&gt;FFmpeg&lt;/a&gt; video handling 
utility can be used to join videos together into one larger video. If the video
files are &lt;a href=&quot;https://en.wikipedia.org/wiki/MPEG-1&quot;&gt;MPEG-1&lt;/a&gt;, 
&lt;a href=&quot;https://en.wikipedia.org/wiki/MPEG-2&quot;&gt;MPEG-2&lt;/a&gt;, MPEG
&lt;a href=&quot;https://en.wikipedia.org/wiki/MPEG_program_stream&quot;&gt;Program Stream (PS)
&lt;/a&gt;, or &lt;a href=&quot;https://en.wikipedia.org/wiki/DV_(video_format)&quot;&gt;Digital Video
(DV)&lt;/a&gt; files, you can use a Direct Stream copy method, by issuing a command in
the form &lt;code&gt;ffmpeg -i &quot;concat:input1.mpg|input2.mpg&quot; -c copy 
output.mpg&lt;/code&gt;. Using ffmpeg for the concatenation operation ensures that 
file headers and timestamps are handled correctly, whereas using operating 
system commands such as &lt;code&gt;cat&lt;/code&gt; on a Linux system or 
&lt;code&gt;copy /b&lt;/code&gt; on a Microsoft Windows system may produce payback issues.
This method can not be used for &lt;a href=&quot;https://en.wikipedia.org/wiki/MPEG-4&quot;&gt;
MPEG-4&lt;/a&gt; files, however. 

&lt;p&gt;Another method that can be used for MP4 files, as well as the above
file types is the Concat Demuxer method, 
if the files use the same &lt;a href=&quot;https://en.wikipedia.org/wiki/Codec&quot;&gt;
codecs&lt;/a&gt; and parameters, such as 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Display_resolution&quot;&gt;resolution&lt;/a&gt;, 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Frame_rate&quot;&gt;framerate&lt;/a&gt;, etc. 
If the files have the same characteristics, you can use a command of the form:

&lt;p&gt;&lt;code&gt;ffmpeg -f concat -safe 0 -i inputFileList.txt 
-c copy output.mp4&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;[ &lt;a href=&quot;/video/ffmpeg/JoinVideos.php&quot;&gt;More Info&lt;/a&gt; ]&lt;/p&gt;</description>
  </item>
  <item>
    <title>Trimming a video with FFmpeg</title>
    <pubDate>Wed, 11 Mar 2026 17:17:00 -0400</pubDate>
    <link>https://support.moonpoint.com/blog/blosxom/2026/03/11#TrimVideo</link>
    <category>/video/ffmpeg</category>
    <guid isPermaLink="false">https://support.moonpoint.com/blog/blosxom/video/ffmpeg/TrimVideo</guid>
    <description>
&lt;p style=&quot;margin-top: 0px;&quot;&gt;
&lt;a href=&quot;https://en.wikipedia.org/wiki/FFmpeg&quot;&gt;FFmpeg&lt;/a&gt; provides a 
suite of 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Command-line_interface&quot;&gt;command-line 
interface&lt;/a&gt; tools for working with audio and video files. It is 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Free_and_open-source_software&quot;&gt;free and 
open-source software&lt;/a&gt; that is available for a variety of 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Operating_system&quot;&gt;operating systems&lt;/a&gt;,
including 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Microsoft_Windows&quot;&gt;Microsoft Windows&lt;/a&gt;,
&lt;a href=&quot;https://en.wikipedia.org/wiki/Linux&quot;&gt;Linux&lt;/a&gt;, and 
&lt;a href=&quot;https://en.wikipedia.org/wiki/MacOS&quot;&gt;macOS&lt;/a&gt;. If you wish to
use it on a Microsoft Windows system, you can install it with the
&lt;a href=&quot;https://en.wikipedia.org/wiki/Windows_Package_Manager&quot;&gt;Windows 
Package Manager&lt;/a&gt; known as winget by 
&lt;a href=&quot;/os/windows/win11/cmdprompt.php&quot;&gt;opening a command prompt window&lt;/a&gt; 
and issuing the command &lt;code&gt;winget install &quot;FFmpeg (Essentials Build)&quot;&lt;/code&gt;.
&lt;/p&gt;

&lt;div class=&quot;commandprompt&quot; style=&quot;padding-right: 25px;&quot;&gt;&lt;pre&gt;
Microsoft Windows [Version 10.0.26100.7623]
(c) Microsoft Corporation. All rights reserved.

C:\Windows\System32&amp;gt;winget install &quot;FFmpeg (Essentials Build)&quot;
Found &lt;span style=&quot;color: #61D6D6;&quot;&gt;FFmpeg (Essentials Build) [Gyan.FFmpeg.Essentials&lt;/span&gt;] Version 8.0.1
This application is licensed to you by its owner.
Microsoft is not responsible for, nor does it grant any licenses to, third-party packages.
Downloading &lt;span style=&quot;color: #2667FE;&quot;&gt;https://github.com/GyanD/codexffmpeg/releases/download/8.0.1/ffmpeg-8.0.1-essentials_build.zip&lt;/span&gt;
  &lt;span style=&quot;color: #0078D4;&quot;&gt;██████████████████████████████&lt;/span&gt;   101 MB /  101 MB
Successfully verified installer hash
Extracting archive...
Successfully extracted archive
Starting package install...
&lt;span style=&quot;color: yellow&quot;&gt;Command line alias added: &quot;ffmpeg&quot;
Command line alias added: &quot;ffplay&quot;
Command line alias added: &quot;ffprobe&quot;
Path environment variable modified; restart your shell to use the new value.&lt;/span&gt;
Successfully installed

C:\Windows\System32&amp;gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;If you need to trim the beginning of a video file, such as a .mp4 file,
you can do so using a command of the form
&lt;code&gt;ffmpeg -ss hh:mm:ss -i input.mp4 -c copy output.mp4&lt;/code&gt; where
you specify the point you wish the video to start in the form hh:mm:ss
for hours, minutes, and seconds with &lt;code&gt;-ss&lt;/code&gt; and
&lt;i&gt;input.mp4&lt;/i&gt; is the file you wish to trim and &lt;i&gt;output.mp4&lt;/i&gt;
is the name you wish to give to the trimmed file. E.g., if I have a video
file, REC-0001-A.mp4, where I wish to discard audio and video up to the 3 
minutes and 34 seconds mark in the file, I can use &lt;code&gt;ffmpeg -ss 00:03:34 -i REC-0001-A.mp4 -c copy output1.mp4&lt;/code&gt; to create a new file, output1.mp4,
that omits the first 3 minutes and 33 seconds from the input file. Using the
&lt;code&gt;-c copy&lt;/code&gt; option copies the video/audio streams directly,
which is fast but can be less accurate on 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Key_frame&quot;&gt;keyframes&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;[ &lt;a href=&quot;/video/ffmpeg/TrimVideo.php&quot;&gt;More Info&lt;/a&gt; ]&lt;/p&gt;</description>
  </item>
  <item>
    <title>Disabling Skye automatic startup</title>
    <pubDate>Thu, 05 Mar 2026 15:30:00 -0500</pubDate>
    <link>https://support.moonpoint.com/blog/blosxom/2026/03/05#disableSkypeStartup</link>
    <category>/os/windows/software</category>
    <guid isPermaLink="false">https://support.moonpoint.com/blog/blosxom/os/windows/software/disableSkypeStartup</guid>
    <description>
I found Microsoft&apos;s &lt;a href=&quot;https://en.wikipedia.org/wiki/Skype&quot;&gt;Skype&lt;/a&gt; for 
Business application was automatically staring on a Microsoft Windows
system where it was not being used. Microsoft
retired the product on May 5, 2025, replacing it with 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Microsoft_Teams&quot;&gt;Microsoft Teams&lt;/a&gt;, 
and is no longer providing security updates or bug fixes for the software. 
Though Microsoft ended official support for Skype for Business Server on
October 14, 2025 and is no longer providing cloud service for the product, 
companies that installed their own servers can still run it locally. If there
is a need to retain the software on a system, but no need to have it start
automatically when the system boots, one can stop it from
starting whenever the system is rebooted by taking the following steps:

&lt;ol&gt;
&lt;li class=&quot;reference&quot;&gt;
Open the program and then click on the gear icon near the top, right side of 
the window.

&lt;p&gt;
&lt;a href=&quot;/os/windows/software/skype/SkypeForBusiness.png&quot;&gt;
&lt;img src=&quot;/os/windows/software/skype/SkypeForBusiness.png&quot; 
alt=&quot;Skype for Business Options&quot; width=&quot;260&quot; height=&quot;428&quot; 
style=&quot;border: 1px solid black;&quot;&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;Choose &lt;em&gt;Tools&lt;/em&gt; and &lt;em&gt;Options&lt;/em&gt;.

&lt;p&gt;
&lt;a href=&quot;/os/windows/software/skype/ToolsOptions.png&quot;&gt;
&lt;img src=&quot;/os/windows/software/skype/ToolsOptions.png&quot; 
alt=&quot;Skype for Business&quot; width=&quot;466&quot; height=&quot;475&quot;&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;
Uncheck the option for &quot;Automatically start the app
when I log on to Windows&quot; under the &lt;em&gt;Personal&lt;/em&gt; options to prevent
the program from restarting automatically upon a login to the system,
then click on &lt;em&gt;OK&lt;/em&gt; to apply the change after unchecking that
option.

&lt;p&gt;
&lt;a href=&quot;/os/windows/software/skype/OptionsStart.png&quot;&gt;
&lt;img src=&quot;/os/windows/software/skype/OptionsStart.png&quot; 
alt=&quot;Skype for Business Personal Options&quot; width=&quot;475&quot; height=&quot;375&quot;&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;/li&gt;
&lt;/ol&gt;</description>
  </item>
  <item>
    <title>Adding the capability to save webpages as a single file to Firefox</title>
    <pubDate>Tue, 03 Mar 2026 15:33:00 -0500</pubDate>
    <link>https://support.moonpoint.com/blog/blosxom/2026/03/03#SavePageWE</link>
    <category>/network/web/browser/firefox/addons</category>
    <guid isPermaLink="false">https://support.moonpoint.com/blog/blosxom/network/web/browser/firefox/addons/SavePageWE</guid>
    <description>
&lt;p style=&quot;margin-top: 0px;&quot;&gt;
The &lt;a href=&quot;https://en.wikipedia.org/wiki/Firefox&quot;&gt;Firefox&lt;/a&gt; web
browser does not have the capability to save the contents of a webpage to a 
single file, such as an
&lt;a href=&quot;https://en.wikipedia.org/wiki/MHTML&quot;&gt;MHTML&lt;/a&gt; file, which is
a web archive file format that allows one to save the 
&lt;a href=&quot;https://en.wikipedia.org/wiki/HTML&quot;&gt;HTML&lt;/a&gt; code, images
etc. on a webpage into a single file. 
Though the capability is absent from Firefox, you can add the functionality
of saving a page to a single file by installing 
&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/save-page-we/&quot;&gt;Save
Page WE&lt;/a&gt;, an 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Add-on_(Mozilla)&quot;&gt;add-on&lt;/a&gt; for Firefox
by &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/user/1236621/&quot;&gt;DW-dev&lt;/a&gt;. The &lt;a href=&quot;https://en.wikipedia.org/wiki/Browser_extension&quot;&gt;
extension&lt;/a&gt; provides the capability to &quot;Save a complete web page (as 
currently displayed) as a single HTML file that can be opened in any browser. 
Save a single page, multiple selected pages or a list of page URLs. Automate 
saving from command line.&quot; The saved file is not an MHTML file, 
or one of the other common 
&lt;a href=&quot;https://en.wikipedia.org/wiki/List_of_web_archiving_file_formats&quot;&gt;web
archiving file formats&lt;/a&gt;, but it
is a single HTML file that Firefox and other browsers can read.
Save Page WE is implemented using the 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Browser_extension#API_conformity&quot;&gt;
WebExtensions API&lt;/a&gt; and is available for both Firefox and 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Google_Chrome&quot;&gt;Chrome&lt;/a&gt; with 
identical functions and user interfaces.&lt;/p&gt;

&lt;p&gt;When you start the installation process, you will see a list of the 
permissions required by the extension:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Access your data for all websites&lt;/li&gt;
&lt;li&gt;Download files and read and modify the browser&apos;s download history&lt;/li&gt;
&lt;li&gt;Display notifications to you&lt;/li&gt;
&lt;li&gt;Access browser tabs&lt;/li&gt;
&lt;li&gt;Access browser activity during navigation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Click on the &lt;em&gt;Add&lt;/em&gt; button to add the extension. You should then
see the message &quot;Save Page WE was added. Update permissions and data preferences any time in the extension settings.&quot; You also have the option to pin the
extension to the toolbar.&lt;/p&gt;

&lt;p&gt;Select the option to pin the extension to the toolbar, which will
result in an icon of a 3.5&quot; floppy disk appearing on the toolbar.
You can click on that icon to save the page displayed in the current
browser tab.&lt;/p&gt;

&lt;p&gt;You can also save a page by hitting the &lt;em&gt;Alt+A&lt;/em&gt; key
combination (you can cancel the saving of a page with &lt;em&gt;At+C&lt;/em&gt;).
The file format is HTML rather than MHTML, so the 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Filename_extension&quot;&gt;file extension&lt;/a&gt; 
used by SavePageWE is .html, which Firefox can open &amp;mdash; if you try to open 
a file with the .mhtml extension, Firefox will prompt you to use another
application to open the file.&lt;/p&gt;

&lt;p&gt;Anyone who wishes to have the ability to save a webpage as a single file
added to Firefox, can add their voice to the post at 
&lt;a href=&quot;https://connect.mozilla.org/t5/ideas/add-native-web-archive-file-support-to-firefox-including-mhtml/idi-p/37324&quot;&gt;
Add native Web Archive File support to Firefox, including MHTML, MAFF, and 
Webarchive...&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;References&lt;/p&gt;

&lt;ol&gt;
&lt;li class=&quot;reference&quot;&gt;
&lt;a href=&quot;https://superuser.com/questions/1854795/how-to-save-a-webpage-as-mhtml-with-firefox&quot;&gt;
How to save a webpage as .mhtml with Firefox?&lt;/a&gt;&lt;br&gt;
Last updated: September 15, 2024&lt;br&gt;
&lt;a href=&quot;https://superuser.com&quot;&gt;superuser&lt;/a&gt;
&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;
&lt;a href=&quot;https://connect.mozilla.org/t5/ideas/add-native-web-archive-file-support-to-firefox-including-mhtml/idi-p/37324&quot;&gt;
Add native Web Archive File support to Firefox, including MHTML, MAFF, and 
Webarchive...&lt;/a&gt;&lt;br&gt;
Date: August 15, 2023&lt;br&gt;
By: &lt;a href=&quot;https://connect.mozilla.org/t5/user/viewprofilepage/user-id/36538&quot;&gt;
JohnBoyTheGreat&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://connect.mozilla.org&quot;&gt;moz://a Connect&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;[ &lt;a href=&quot;/network/web/browser/firefox/addons/SavePageWE&quot;&gt;More Info&lt;/a&gt; ]
&lt;/p&gt;
</description>
  </item>
  <item>
    <title>Turning off Fast Startup on a system running Microsoft Windows</title>
    <pubDate>Mon, 02 Mar 2026 23:11:00 -0500</pubDate>
    <link>https://support.moonpoint.com/blog/blosxom/2026/03/02#fastStartup</link>
    <category>/os/windows</category>
    <guid isPermaLink="false">https://support.moonpoint.com/blog/blosxom/os/windows/fastStartup</guid>
    <description>
&lt;p style=&quot;margin-top: 0px;&quot;&gt;Microsoft Windows 8 introduced a feature called
&lt;a href=&quot;https://en.wikipedia.org/wiki/Hibernation_(computing)#Microsoft_Windows&quot;&gt;
Fast Startup&lt;/a&gt;. The feature was a variation of hibernate mode, but when
enabled would close all running programs and log the user out before 
hibernating. This feature would result in a user being able to log in 
more quickly when a system is powered back on after a shutdown. There may
be cases where use of this feature is not desirable, however. E.g., if the
user wants to boot the system into 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Linux&quot;&gt;Linux&lt;/a&gt;, but still access data 
on the Windows boot drive.  To turn fast startup off, you can take the
following steps:&lt;/p&gt;

&lt;ol&gt;

&lt;li class=&quot;reference&quot;&gt;
Type &lt;code&gt;Control Panel&lt;/code&gt; in the Windows &lt;em&gt;Search&lt;/em&gt; field
at the bottom of the screen.
&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;
Click on &lt;em&gt;System and Security&lt;/em&gt;.
&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;
Click on &lt;em&gt;Change what the power buttons do&lt;/em&gt; under &lt;em&gt;Power
Options&lt;/em&gt;.
&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;
Click on &lt;em&gt;Change settings that are currently unavailable&lt;/em&gt;.
If prompted for administrator credentials, provide those for
an administrator account.
&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;
Uncheck the check box next to &quot;Turn on fast startup (recommended)&quot;.
&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;
Click on &lt;em&gt;Save changes&lt;/em&gt;. You can then close the window.
&lt;/li&gt;

&lt;/ol&gt;

&lt;p&gt;[ &lt;a href=&quot;/os/windows/fastStartup&quot;&gt;More Info&lt;/a&gt; ]&lt;/p&gt;</description>
  </item>
  <item>
    <title>Controlling whether a scrollbar appears in a tab in a Terminal window</title>
    <pubDate>Sun, 01 Mar 2026 22:55:00 -0500</pubDate>
    <link>https://support.moonpoint.com/blog/blosxom/2026/03/01#scrollbar</link>
    <category>/os/unix/linux/ubuntu</category>
    <guid isPermaLink="false">https://support.moonpoint.com/blog/blosxom/os/unix/linux/ubuntu/scrollbar</guid>
    <description>
I needed to scroll back through a tab I had open in a 
&lt;a href=&quot;https://en.wikipedia.org/wiki/GNOME_Terminal&quot;&gt;Terminal&lt;/a&gt; window on
an &lt;a href=&quot;https://en.wikipedia.org/wiki/Ubuntu&quot;&gt;Ubuntu&lt;/a&gt; Linux system, 
but there was no &lt;a href=&quot;https://en.wikipedia.org/wiki/Scrollbar&quot;&gt;
scrollbar&lt;/a&gt; on the right side of the tab in which I had run the command,
though a scrollbar was open in other Terminal tabs. I was able to get the
scrollbar to appear by clicking on the icon with 3 horizontal bars at
the top of the Terminal window and then selecting &lt;em&gt;Preferences&lt;/em&gt;.

&lt;p&gt;
&lt;img src=&quot;/os/unix/linux/ubuntu/TerminalPreferences.png&quot; 
alt=&quot;Terminal Preferences&quot; width=&quot;252&quot; height=&quot;446&quot;&gt;
&lt;/p&gt;

&lt;p&gt;Then from the &lt;em&gt;Behavior&lt;/em&gt; tab, I changed the setting from 
&lt;em&gt;Follow System&lt;/em&gt; to &lt;em&gt;Always&lt;/em&gt;, which resulted in the
scrollbar appearing where it had been missing, but I could not scroll
back any further than the text that had been appearing in the tab
before I changed the settiing and that remained the same whenever
I issued another command and text moved upwards, so that I could no
longer see it or scroll back to see it, so I closed the tab.&lt;/p&gt;
 
&lt;p&gt;
&lt;img src=&quot;/os/unix/linux/ubuntu/AlwaysUseScrollbars.png&quot; 
alt=&quot;Always use scrollbars&quot; width=&quot;487&quot; height=&quot;620&quot;&gt;
&lt;/p&gt;

&lt;p&gt;When I opened another tab, the scrollbar was there and operated
as expected.&lt;/p&gt;</description>
  </item>
  <item>
    <title>Creating a desktop shortcut under Ubuntu for a Windows app runnning under Wine</title>
    <pubDate>Sat, 28 Feb 2026 20:29:00 -0500</pubDate>
    <link>https://support.moonpoint.com/blog/blosxom/2026/02/28#shortcut</link>
    <category>/os/unix/linux/wine</category>
    <guid isPermaLink="false">https://support.moonpoint.com/blog/blosxom/os/unix/linux/wine/shortcut</guid>
    <description>
&lt;p style=&quot;margin-top: 0px;&quot;&gt;
From a &lt;a href=&quot;https://en.wikipedia.org/wiki/Compact_disc&quot;&gt;CD&lt;/a&gt;, I 
installed &lt;a href=&quot;https://en.wikipedia.org/wiki/Microsoft_Office_2007&quot;&gt;
Microsoft Office 2007&lt;/a&gt; under 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Wine_(software)&quot;&gt;Wine&lt;/a&gt;, so that 
my wife could edit her 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Microsoft_Publisher&quot;&gt;Microsoft 
Publisher&lt;/a&gt; files on an &lt;a href=&quot;https://en.wikipedia.org/wiki/Ubuntu&quot;&gt;
Ubuntu&lt;/a&gt; Linux system. I also installed
&lt;a href=&quot;https://en.wikipedia.org/wiki/Microsoft_Excel&quot;&gt;Microsoft Excel&lt;/a&gt;
and &lt;a href=&quot;https://en.wikipedia.org/wiki/Microsoft_Word&quot;&gt;Microsoft Word&lt;/a&gt;.
All three seemed to be working OK when I checked them after the
installation completed.  I was able to open the programs from the 
&lt;a href=&quot;https://en.wikipedia.org/wiki/File_Explorer&quot;&gt;File Explorer&lt;/a&gt; by
issuing the command &lt;code&gt;wine explorer&lt;/code&gt; from a 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Unix_shell&quot;&gt;shell&lt;/a&gt; prompt in
a &lt;a href=&quot;https://en.wikipedia.org/wiki/GNOME_Terminal&quot;&gt;Terminal&lt;/a&gt; window
and then navigating to the directory,
&lt;code&gt;C:\Program Files (x86)\Microsoft Office\Office12&lt;/code&gt;,  where the 
applications were located. I could also start Publisher by issuing the command 
below in a Terminal window:&lt;/p&gt;

&lt;pre&gt;wine &quot;/home/alice@Wonderland/.wine/drive_c/Program Files (x86)/Microsoft Office/Office12/MSPUB.EXE&quot;&lt;/pre&gt;

&lt;p&gt;To make it easer for my wife to open Publisher, though, I created a
shortcut on her Ubuntu desktop. To create a shortcut you can take the
following steps:&lt;/p&gt;

&lt;p&gt;Open a &lt;a href=&quot;https://en.wikipedia.org/wiki/GNOME_Terminal&quot;&gt;Terminal&lt;/a&gt;
window and create a new .desktop file on your desktop. You can use
the &lt;a href=&quot;https://en.wikipedia.org/wiki/GNU_nano&quot;&gt;nano&lt;/a&gt;
editor or another &lt;a href=&quot;https://en.wikipedia.org/wiki/Text_editor&quot;&gt;text
editor&lt;/a&gt; to create the file. E.g., &lt;code&gt;nano 
~/Desktop/AppName.desktop&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;You then need to have lines like the following ones in the file:&lt;/p&gt;

&lt;pre&gt;
[Desktop Entry]
Name=Name of Your Application
Exec=wine &quot;/home/username/.wine/drive_c/Program Files/AppName/app.exe&quot;
Type=Application
Icon=wine
Terminal=false
StartupNotify=true
&lt;/pre&gt;

&lt;p&gt;You need to use the absolute path the the .exe file for the program and,
if the directory &lt;a href=&quot;https://en.wikipedia.org/wiki/Path_(computing)&quot;&gt;
path&lt;/a&gt; contains a space, you must enclose the path within quotes. Also,
you need to replace &lt;i&gt;username&lt;/i&gt; with your username on the system.
For Publisher, I could use the following lines:&lt;/p&gt;

&lt;pre&gt;
[Desktop Entry]
Name=Publisher
Exec=wine &quot;/home/alice@Wonderland/.wine/drive_c/Program Files (x86)/Microsoft Office/Office12/MSPUB.EXE&quot;
Type=Application
Icon=wine
Terminal=false
StartupNotify=true
&lt;/pre&gt;


&lt;p&gt;If you use the nano text editor, you can hit &lt;em&gt;Ctrl+X&lt;/em&gt;, the
&lt;em&gt;Y&lt;/em&gt;, then &lt;em&gt;Enter&lt;/em&gt; to save the file. You then need to make
the shortcut executable, which you can do by right-clicking on the file
on the desktop, selecting &lt;em&gt;Properties&lt;/em&gt;, and then makng sure &quot;Executable
as Program&quot; is on. Or you can use the 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Chmod&quot;&gt;chmod&lt;/a&gt; command to make
the file excutable by a command like &lt;code&gt;chmod +x ~/Desktop/AppName.desktop
&lt;/code&gt;. You then need to permit launching of the application from the shortcut
by right-clicking on it and selecting &lt;em&gt;Allow Launching&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;[ &lt;a href=&quot;/os/unix/linux/wine/shortcut&quot;&gt;More Info&lt;/a&gt; ]&lt;/p&gt;</description>
  </item>
  <item>
    <title>Wine window becoming transparent with an attempt to resize it</title>
    <pubDate>Fri, 27 Feb 2026 15:41:00 -0500</pubDate>
    <link>https://support.moonpoint.com/blog/blosxom/2026/02/27#transparent</link>
    <category>/os/unix/linux/wine</category>
    <guid isPermaLink="false">https://support.moonpoint.com/blog/blosxom/os/unix/linux/wine/transparent</guid>
    <description>
&lt;p style=&quot;margin-top: 0px;&quot;&gt;
My wife was using &lt;a href=&quot;https://csoftlab.com/diary&quot;&gt;Advanced Diary&lt;/a&gt; for 
journaling on a Microsoft Windows system, but wanted to transition to 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Linux&quot;&gt;Linux&lt;/a&gt;, so I installed
&lt;a href=&quot;https://en.wikipedia.org/wiki/Ubuntu&quot;&gt;Ubuntu&lt;/a&gt; Linux and then,
since there is no Linux version of Advanced Diary, I installed 
Advanced Diary under &lt;a href=&quot;https://en.wikipedia.org/wiki/Wine_(software)&quot;&gt;
Wine&lt;/a&gt;.  She wanted to adjust the size of the Advanced Diary window, but when 
she attempted to adjust the window size by clicking on the 
&lt;a href=&quot;RestoreDown.png&quot;&gt;Restore Down&lt;/a&gt; icon at the top right side of the 
window (between the dash and the &quot;X&quot;), the Advanced Diary window became 
transparent and it was not possible to close it or adjust the size of the 
transparent box that appeared for the Advanced Diary window.
So I had to open a &lt;a href=&quot;https://en.wikipedia.org/wiki/GNOME_Terminal&quot;&gt;
Terminal&lt;/a&gt; window to determine the 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Process_identifier&quot;&gt;process ID&lt;/a&gt; (PID)
of the Advanced Diary process with the 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Ps_(Unix)&quot;&gt;ps&lt;/a&gt; and then kill that 
process with the &lt;a href=&quot;https://en.wikipedia.org/wiki/Kill_(command)&quot;&gt;
kill&lt;/a&gt; command. I could also have used the 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Killall&quot;&gt;killall&lt;/a&gt; command 
&lt;code&gt;killall AdvancedDiary.exe&lt;/code&gt;.
I tried closing and opening the program several times. The behavior
was consistent &amp;mdash; the window would become transparent whenever
I tried resizing or minimizing the window.
If you are using the &lt;a href=&quot;https://en.wikipedia.org/wiki/GNOME&quot;&gt;
GNOME&lt;/a&gt; desktop, you can use the steps below to try to resolve the problem.
GNOME is the default desktop environment for Ubuntu, but you can verify
it is the desktop in use by the command &lt;code&gt;echo $XDG_CURRENT_DESKTOP&lt;/code&gt;.
&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Steps that may resolve the problem:&lt;/b&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li class=&quot;reference&quot;&gt;
&lt;p&gt;Run &lt;code&gt;winecfg&lt;/code&gt; in a Terminal window.&lt;/p&gt;
&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;
In the &lt;em&gt;Wine configuration&lt;/em&gt; window, click on the &lt;em&gt;Graphics&lt;/em&gt;
tab.
&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;
Toggle the settings for &quot;Allow the window manager to decorate the windows&quot;
and &quot;Allow the window manager to control the windows&quot; one by one to see if
one of those settings change the behavior. When I toggled off &quot;Allow the
window manager to decorate the windows&quot;, I now no longer saw the icons
to adjust the size of the window or minimize the window at the top of the
Wine window for Advanced Diary, but when I clicked where I expected them
to appear, the window became transparent again. I toggled the setting back
on and then toggled off the &quot;Allow the window manager to control the
windows&quot; setting. That resolved the problem. I then closed the window
and reopened Advanced Diary and toggled that setting on again, also, so 
that both settings were checked. I could still adjust the window size
as expected. I closed and reopened the application several times
and was still able to adjust the window size, so just toggling the
&quot;Allow the window manager to control the windows&quot; setting off and
then back on seemed to resolve the problem. 
&lt;/li&gt;

&lt;/ol&gt;

&lt;p&gt;[ &lt;a href=&quot;/os/unix/linux/wine/AdvDiary/transparent.php&quot;&gt;More Info&lt;/a&gt; ]&lt;/p&gt;</description>
  </item>
  <item>
    <title>Restarting the Windows audio service</title>
    <pubDate>Thu, 26 Feb 2026 22:31:00 -0500</pubDate>
    <link>https://support.moonpoint.com/blog/blosxom/2026/02/26#RestartAudio</link>
    <category>/os/windows</category>
    <guid isPermaLink="false">https://support.moonpoint.com/blog/blosxom/os/windows/RestartAudio</guid>
    <description>
If you are experiencing problems with sound on a Microsoft Windows system,
such as being unable to hear audio even when the sound hasn&apos;t been muted
and any external speakers are turned on and set to an audible volume level,
one possible way to resolve the problem is to restart the 
Windows Audio service. To do so, you can can take the following steps:

&lt;ol&gt;
&lt;li class=&quot;reference&quot;&gt;Type &lt;code&gt;services&lt;/code&gt; in
the Windows Search field. You should see it returned by the search
utility. Click on &quot;Run as administrator&quot; and provide the login credentials
for an account that has adminisrator privileges.&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;When the &lt;em&gt;Services&lt;/em&gt; window opens, scroll
down until you see &lt;em&gt;Windows Audio&lt;/em&gt;.&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;Right-click on the entry and choose &quot;Restart&quot;.&lt;/li&gt;

&lt;li class=&quot;reference&quot;&gt;When the status for the service returns to &quot;Running&quot;, 
you can close the &lt;em&gt;Services&lt;/em&gt; window.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;[ &lt;a href=&quot;/os/windows/RestartAudio/&quot;&gt;More Info&lt;/a&gt; ]&lt;/p&gt;</description>
  </item>
  <item>
    <title>Configuring Sendmail to listen on the mail submission port</title>
    <pubDate>Wed, 25 Feb 2026 23:57:00 -0500</pubDate>
    <link>https://support.moonpoint.com/blog/blosxom/2026/02/25#port587</link>
    <category>/network/email/sendmail</category>
    <guid isPermaLink="false">https://support.moonpoint.com/blog/blosxom/network/email/sendmail/port587</guid>
    <description>
&lt;p style=&quot;margin-top: 0px;&quot;&gt;
&lt;a href=&quot;https://en.wikipedia.org/wiki/Sendmail&quot;&gt;Sendmail&lt;/a&gt; is an
email server application that is available for many operating systems. 
It will listen on 
&lt;a href=&quot;https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers&quot;&gt;TCP 
port 25&lt;/a&gt; for connections from other mail servers that use the
&lt;a href=&quot;https://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol&quot;&gt;Simple
Mail Transfer Protocol&lt;/a&gt; for email transmissions. As
a &lt;a href=&quot;https://en.wikipedia.org/wiki/Message_submission_agent&quot;&gt; message
submission agent&lt;/a&gt; (MSA), another common port it listens on is TCP port 587 
for email transmissions from users&apos; email clients.  On a 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Linux&quot;&gt;Linux&lt;/a&gt; system you can use the 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Netstat&quot;&gt;netstat&lt;/a&gt; or 
&lt;a href=&quot;https://www.geeksforgeeks.org/linux-unix/ss-command-in-linux/&quot;&gt;ss&lt;/a&gt; 
commands to determine if a system is listening for connections on a
particular port. When I checked a Sendmail server to determine whether it
was listening on port 587, I could see that it was not listening on that
port, though that was needed.&lt;/p&gt;

&lt;div class=&quot;commandprompt&quot; style=&quot;padding-right: 25px;&quot;&gt;&lt;pre&gt;
# netstat -an | grep 587
# ss -ln | grep &quot;:587 &quot;
#&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;When I searched &lt;code&gt;/etc/mail/sendmail.mc&lt;/code&gt; for
&lt;code&gt;RELAY_MAILER_ARGS&lt;/code&gt;, I saw the following
lines, which are needed to have Sendmail listen for email transmissions
from users on TCP port 587, were already present and were not commented out:&lt;/p&gt;

&lt;div class=&quot;commandprompt&quot; style=&quot;padding-right: 10px;&quot;&gt;
&lt;pre&gt;define(`RELAY_MAILER_ARGS&apos;, `TCP $h 587&apos;)
define(`ESMTP_MAILER_ARGS&apos;, `TCP $h 587&apos;)&lt;/pre&gt;
&lt;/div&gt;

&lt;p&gt;When I searched for &lt;code&gt;DAEMON_OPTIONS&lt;/code&gt;, I saw the following:&lt;/p&gt;

&lt;div class=&quot;commandprompt&quot; style=&quot;padding-right: 5px;&quot;&gt;&lt;pre&gt;
dnl # The following causes sendmail to additionally listen to port 587 for
dnl # mail from MUAs that authenticate. Roaming users who can&apos;t reach their
dnl # preferred sendmail daemon due to port 25 being blocked or redirected find
dnl # this useful.
dnl #
dnl DAEMON_OPTIONS(`Port=submission, Name=MSA, M=Ea&apos;)dnl&lt;/pre&gt;
&lt;/div&gt;

&lt;p&gt;I removed the &lt;code&gt;dnl&lt;/code&gt; from the begining of the line so that
I then had the line below, instead:&lt;/p&gt;

&lt;div class=&quot;commandprompt&quot; style=&quot;padding-right: 10px;&quot;&gt;
&lt;pre&gt;DAEMON_OPTIONS(`Port=submission, Name=MSA, M=Ea&apos;)dnl&lt;/pre&gt;
&lt;/div&gt;

&lt;p&gt;I then rebuilt &lt;code&gt;/etc/sendmail/mc&lt;/code&gt; and restarted the Sendmail 
service.&lt;/p&gt;

&lt;div class=&quot;commandprompt&quot; style=&quot;padding-right: 10px;&quot;&gt;&lt;pre&gt;
# m4 /etc/mail/sendmail.mc &amp;gt; /etc/mail/sendmail.cf
# service sendmail restart
Redirecting to /bin/systemctl restart  sendmail.service
#&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;I could then see that the system was listening for connections on port
587.&lt;/p&gt;

&lt;p&gt;[ &lt;a href=&quot;/network/email/sendmail/port587.php&quot;&gt;More Info&lt;/a&gt; ]&lt;/p&gt;</description>
  </item>
  </channel>
</rss>
