Create Desktop Shortcuts via GPO
- User Conguration
- Preferences
- Windows Settings
- Shortcuts
- New -> Shortcut
- update
- name of the link ( myfolder\mylink )
- file system object
- Desktop
- \\mypath\mylink
nano /etc/network/interfaces
allow-hotplug ens192
iface ens192 inet static
address 192.168.xx.yy
netmask 255.255.255.0
gateway 192.168.xx.yyy
dns-nameservers 192.168.xx.z 192.168.xx.w 192.168.xx.t
dns-search mydomain.mytld
require(“/path/to/fpdf.php”);
$pdf = new FPDF(‘L’,’mm’,array($X,$Y));
$pdf->AddFont(‘code39′,”,’code39.php’);
$pdf->AddPage();
$pdf->SetFont(‘code39’,”,12);
$pdf->Text(5,3,’*
$pdf->SetFont(‘Arial’,”,18);
$pdf->Text($x,$y,’
$pdf->Output(‘F’,’/path/to/file/myfile.pdf’);
to generate a code39 file from ttf:
https://www.fruit-lab.de/index.php?id=3
http://www.fpdf.org/
c:> mklink /d c:\some\directory \\some_server\some_share
This will create a folder named c:\some\directory which will show the content of the share \\some_server\some_share.
This will work also with a remote disk with i.e. \\some_server\C$.
apt-get update
apt-get install unixodbc unixodbc-dev php-odbc php-cli
wget https://packages.microsoft.com/debian/10/prod/pool/main/m/msodbcsql17/msodbcsql17_17.4.1.1-1_amd64.deb
odbcinst -i -d -f /opt/microsoft/msodbcsql17/etc/odbcinst.ini
nano /etc/odbc.ini
[MySQLServerDB]
Description = Database SqlServerDB
Driver = ODBC Driver 17 for SQL Server
Server = server[,port]
Types of Virtual Switches
External – This type of switch is bound to the physical network cards located in the host. As you would imagine, they provide VMs located on these switches with access to the physical network the Hyper-V host is connected to. The External switch can also share management traffic as well as VM traffic on the same switch and this is one of the options that can be set when creating the external switch.
Internal – This switch is not bound to a physical network card so only allows traffic between VMs and the host itself. However, a new addition to the Internal switch functionality in 2016 is the addition of the NAT forwarding internal switch which does allow external connectivity via NAT from the Hyper-V host.
Private – This type of switch is only used for virtual machines to communicate with each other. This type of switch might be useful for certain specific types of traffic such as cluster network if only using one host as it can’t be utilized between hosts.
Based on HP
You can configure the link type of a port as access, trunk, or hybrid. The link types use the following VLAN tag handling methods:
The PVID identifies the default VLAN of a port. Untagged packets are transmitted through the default VLAN.
When you configure the PVID on a port, follow these guidelines:
Based on Cisco:
Each port or LAG is marked with one of the following modes:
For each port or LAG (Link Aggregation Group), select one of the following values:
For each port or LAG, one or both of the following values may be selected:
Trigger Expression:
{MyTemplate:MyItem.count(#2)}<2 or {MyTemplate:MyItem.diff()=1}
Assuming that “pagecount” is the global counter item of our printer we can create a calculated item with the following expression:
max(pagecount,2592000)-min(pagecount,2592000)
where 2592000 is the number of seconds (30 days, i.e 60sec x 60min x 24hours x 30days) of our interval to get the minimum and the maximum number detected.